diff --git a/CHANGELOG.md b/CHANGELOG.md index 116ebf1..1312662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.1.0] - 2022-05-18 + ### Added -- Added the MultiCons class +- Implement the MultiCons class -[unreleased]: https://github.com/SergioSim/multicons +[unreleased]: https://github.com/SergioSim/multicons/v0.1.0...master +[0.1.0]: https://github.com/SergioSim/multicons/compare/125c67d...v0.1.0 diff --git a/setup.cfg b/setup.cfg index 46c790a..dc3d3fd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = multicons -version = 0.0.1 +version = 0.1.0 description = MultiCons (Multiple Consensuses) algorithm long_description = file:README.md long_description_content_type = text/markdown diff --git a/src/multicons/__init__.py b/src/multicons/__init__.py index 9df91c3..64c3cc8 100644 --- a/src/multicons/__init__.py +++ b/src/multicons/__init__.py @@ -16,4 +16,4 @@ linear_closed_itemsets_miner, ) -__version__ = "0.0.1" +__version__ = "0.1.0"