Skip to content

Commit 4251ac3

Browse files
committed
v1.11.0
1 parent 4518008 commit 4251ac3

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

CHANGELOG.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
# 2022-03-21 [ 1.11.0 ]:
2+
---------------------------
3+
* bugfixes
4+
- Fixed #576 Incorrect stimp, stimped, gpu_stimp normalize rerouting
5+
- Fixed bad index in `naive.stimp` normalization method
6+
- Fixed unit tests
7+
- Fixed `cutoff=np.inf` edge case in `_motifs` function
8+
* features
9+
- Added `mmotifs` and `aamp_mmotifs` functions for multi-dimensional motif discovery and unit tests
10+
- Added all AAMP/p-norm `stimp` implementations
11+
- Added `atol` parameter to `motifs` function
12+
- Added parallelized `prescraamp`
13+
- Added parallelized `prescrump`
14+
- Added `_get_ranges` function
15+
- Added `shoelace` formula for computing total diagonal ndists
16+
- Added `p_norm` support
17+
- Added `_preprocess` function
18+
- Added minimum description length function, `mdl`
19+
- Added Python 3.10 support
20+
- Added AAMP/p-norm support for pan matrix profiles
21+
* tasks
22+
- Fixed typos
23+
- Added `gpu_aamp_stimp` driver error
24+
- Increased minimum dependencies
25+
- Updated coverage testings to include all unit tests and additional modules
26+
- Added `pip.sh` script for setting dev environment
27+
- Replaced `argsort` with `argmin`/`argmax`
28+
- Refactored redundant preprocessing steps
29+
- Replaced deprecated `scipy.ndimage.filters` module
30+
- Updated conda environment installation steps in `conda.sh` script
31+
- Updated `subspace` vs `subspaces` definition
32+
- Replaced `py.test` with `pytest`
33+
- Updated minimum `black` version to 22.1.0
34+
- Replaced elbow method with `mdl` in multi-dimensional motif tutorial
35+
- Converted `float`/`int` type to `np.float64`/`np.int64`
36+
- Added `dtype` check and fill value to `apply_excl_zone` function
37+
- Added note on anti-correlated subsequences
38+
* documentation
39+
- Updated README and various docstrings
40+
- Added MPdist tutorial draft
41+
- Added annotation vector tutorial
42+
- Added geometric time series chains tutorial draft
43+
- Added top-K motif section to motif discovery tutorial
44+
45+
146
# 2021-12-15 [ 1.10.2 ]:
247
---------------------------
348
* bugfixes
@@ -9,7 +54,7 @@
954
- Removed conda download badge, updated PyPI download badge
1055
- Added removal __pycache__ in test clean up phase
1156
* documentation
12-
- Update pan matrix profile tutorial
57+
- Updated pan matrix profile tutorial
1358
- Updated docstring for match and motifs functions
1459

1560

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_extras_require():
2828

2929
configuration = {
3030
"name": "stumpy",
31-
"version": "1.10.2",
31+
"version": "1.11.0",
3232
"python_requires=": ">=3.7",
3333
"author": "Sean M. Law",
3434
"author_email": "[email protected]",

0 commit comments

Comments
 (0)