diff --git a/CHANGELOG.md b/CHANGELOG.md index c652e15..8c88c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -[Unreleased]: https://github.com/zellerlab/GECCO/compare/v0.9.7...master +[Unreleased]: https://github.com/zellerlab/GECCO/compare/v0.9.8...master + + +## [v0.9.8] - 2023-06-09 +[v0.9.8]: https://github.com/zellerlab/GECCO/compare/v0.9.7...v0.9.8 + +### Fixed +- `ClusterTable.from_clusters` extracting cluster IDs in the wrong column. +- Deprecation warnings in `polars.read_csv` and `polars.write_csv` with recent `polars` versions. +- Deprecation warnings in `importlib_resources` with recent Python versions. ## [v0.9.7] - 2023-05-26 diff --git a/gecco/__init__.py b/gecco/__init__.py index 7d923b5..4dac7c1 100644 --- a/gecco/__init__.py +++ b/gecco/__init__.py @@ -10,4 +10,4 @@ __author__ = "Martin Larralde" __license__ = "GPLv3" -__version__ = "0.9.7" +__version__ = "0.9.8"