From e7bce70c706bf776db0f11dfa9a9cc431a69eaad Mon Sep 17 00:00:00 2001 From: Daniel Nagel Date: Mon, 11 Mar 2024 14:45:14 +0000 Subject: [PATCH] Bump to v0.2.0 --- CHANGELOG.md | 9 ++++++++- setup.py | 2 +- src/normi/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52c988d..ab0dbdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + + +## [0.2.0] - 2024-03-11 #### API changes warning ⚠️: - Changed default for invariant measure to `volume` - Changed default for normalization method to `geometric` @@ -21,6 +24,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 #### Added Features and Improvements 🙌: - Added an icon, thx to @gegabo +#### Bugfix 🐛: +- Fix beartype warning for small number of samples + ## [0.1.1] - 2023-11-07 #### Added Features and Improvements 🙌 @@ -34,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release 🎉 -[Unreleased]: https://github.com/moldyn/normi/compare/v0.1.1...main +[Unreleased]: https://github.com/moldyn/normi/compare/v0.2.0...main +[0.2.0]: https://github.com/moldyn/normi/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/moldyn/normi/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/moldyn/normi/tree/v0.1.0 diff --git a/setup.py b/setup.py index 47feea8..425c0fc 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def remove_gh_dark_mode_only_tags(text, tag='#gh-dark-mode-only'): # This call to setup() does all the work setuptools.setup( name='normi', - version='0.1.1', + version='0.2.0', description='Estimator for Normalized Mutual Information', long_description=README, long_description_content_type='text/markdown', diff --git a/src/normi/__init__.py b/src/normi/__init__.py index 9f72616..2dc47a4 100644 --- a/src/normi/__init__.py +++ b/src/normi/__init__.py @@ -8,4 +8,4 @@ from ._estimators import NormalizedMI -__version__ = '0.1.1' +__version__ = '0.2.0'