diff --git a/CHANGELOG.md b/CHANGELOG.md index bd19b46..64c0c57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to ## [Unreleased] +## [0.3.0] - 2024-05-09 + +## Fixed + +- Fix incompatible dtype warning + ## [0.2.0] - 2023-04-11 ### Changed @@ -20,6 +26,7 @@ and this project adheres to - Implement the MultiCons class -[unreleased]: https://github.com/SergioSim/multicons/compare/v0.2.0...master +[unreleased]: https://github.com/SergioSim/multicons/compare/v0.3.0...master +[0.3.0]: https://github.com/SergioSim/multicons/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/SergioSim/multicons/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/SergioSim/multicons/compare/125c67d...v0.1.0 diff --git a/setup.cfg b/setup.cfg index 7316fa2..dece5b7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = multicons -version = 0.2.0 +version = 0.3.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 7e8ca8f..387d862 100644 --- a/src/multicons/__init__.py +++ b/src/multicons/__init__.py @@ -16,4 +16,4 @@ linear_closed_itemsets_miner, ) -__version__ = "0.2.0" +__version__ = "0.3.0"