diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e40a5a..daa057c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Added +### Changed +### Fixed + +## [0.6.0] + ### Added - new parameter `closed` for `sampen` to determine if `<` or `<=` should be used for checking if the distance between a vector pair is within the tolerance @@ -215,7 +221,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Hurst exponent (`hurst_rs`) - detrended fluctuation analysis (DFA) (`dfa`) -[Unreleased]: https://github.com/CSchoel/nolds/compare/0.5.2..HEAD +[Unreleased]: https://github.com/CSchoel/nolds/compare/0.6.0..HEAD +[0.6.0]: https://github.com/CSchoel/nolds/compare/0.5.2..0.6.0 [0.5.2]: https://github.com/CSchoel/nolds/compare/0.5.1..0.5.2 [0.5.1]: https://github.com/CSchoel/nolds/compare/0.5.0..0.5.1 [0.5.0]: https://github.com/CSchoel/nolds/compare/0.4.1..0.5.0 diff --git a/doc/source/conf.py b/doc/source/conf.py index 36a48fd..1c6a6e7 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = '0.5' +version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.5.2' +release = '0.6.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c95147e..9bd360a 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def run(self): with io.open("README.rst", "r", encoding="utf-8") as f: readme = f.read() -version = '0.5.2' +version = '0.6.0' setup( name='nolds', packages=['nolds'],