-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNEWS.Rmd
46 lines (38 loc) · 1.35 KB
/
NEWS.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
title: "NEWS"
author: "Francisco Bischoff\n"
date: "`r format(Sys.Date(), '%d %b %Y')`"
output:
github_document:
md_extension: +blank_before_header
html_preview: false
md_document:
pandoc_args: [
"--output", "NEWS",
]
---
<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/NEWS-" # nolint
)
```
## matrixprofiler 0.1.7
- Fixed issue on Makefile for Unix/Mac systems that triggered some CRAN policy about
"Packages should not attempt to disable compiler diagnostics, nor to remove other diagnostic
information such as symbols in shared objects." The objective was to reduce the compiled
library that even in release mode have being compiled in debug mode.
More info at http://dirk.eddelbuettel.com/blog/2017/08/14/
## matrixprofiler 0.1.5
- Fixed `Rcpp` as specified by the PR #15 from Dirk @eddelbuettel
## matrixprofiler 0.1.4
- Dropped PAA algorithm
- Added some math helper functions
## matrixprofiler 0.1.3
- CRAN fixes
## matrixprofiler 0.1.0
- Initial implementation of this package.
- This package will keep all core functions that will allow you to use the Matrix Profile concept as a toolkit.
- It will be the main dependency of the already available package `tsmp`.