diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f6b43f..36cfdb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ # CHANGELOG +## v1.27.0 (2024-12-17) + +### Features + +- Add analysis functions ([#92](https://github.com/bhklab/readii/pull/92), + [`a57182c`](https://github.com/bhklab/readii/commit/a57182cb32f3bcd3600eaed53ad60ac145fe9d6f)) + +Includes correlation calculations and plotting those correlations as a heatmap and histogram + +- **New Features** - Updated version number to 1.26.0 with new dependencies: `numpy`, `seaborn`, and + `pandas`. - Introduced a new module for analyzing READII outputs with several correlation + functions. - Added visualization functions for correlation data: heatmap and histogram. - New + validation function for DataFrame dimensions added. - Expanded platform support to include + `osx-64` and `win-64`. + +- **Bug Fixes** - Enhanced error handling in correlation calculations and plot saving processes. - + Simplified exception handling in feature loading functions. + +- **Documentation** - Improved docstrings for new functions and modules for better usability. + +- **Chores** - Expanded linting configuration for broader coverage of Python files. + + ## v1.26.0 (2024-12-16) ### Features diff --git a/pyproject.toml b/pyproject.toml index 21e0154..91ca823 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "readii" -version = "1.26.0" +version = "1.27.0" description = "A package to extract radiomic features!" authors = [{ name = "Katy Scott", email = "Katy.Scott@uhn.ca" }] diff --git a/src/readii/__init__.py b/src/readii/__init__.py index 69ad36a..4d79b14 100644 --- a/src/readii/__init__.py +++ b/src/readii/__init__.py @@ -1,4 +1,4 @@ # read version from installed package from importlib.metadata import version -__version__ = "1.26.0" +__version__ = "1.27.0"