Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Updates version for 0.6.1 release #58

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added
### Changed
### Fixed

## [0.6.1]

### Added

* Regression tests for all major algorithms that check for small changes in the main output value.
Expand Down Expand Up @@ -227,7 +233,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.6.0..HEAD
[Unreleased]: https://github.com/CSchoel/nolds/compare/0.6.1..HEAD
[0.6.1]: https://github.com/CSchoel/nolds/compare/0.6.0..0.6.1
[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
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# The short X.Y version.
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.6.0'
release = '0.6.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(self):

with io.open("README.rst", "r", encoding="utf-8") as f:
readme = f.read()
version = '0.6.0'
version = '0.6.1'
setup(
name='nolds',
packages=['nolds'],
Expand Down