From 17701876b67923c6c76f2183d4d6e02ead208095 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Mon, 30 Dec 2024 20:50:52 +0000 Subject: [PATCH] 1.32.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- src/readii/__init__.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8f4c6..5bb6720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ # CHANGELOG +## v1.32.0 (2024-12-30) + +### Features + +- Update plot correlation functions ([#104](https://github.com/bhklab/readii/pull/104), + [`9baffe9`](https://github.com/bhklab/readii/commit/9baffe93e6d3bb9f67887d98348dece5a4de69cf)) + +add self and cross correlation plot functions + + ## Summary by CodeRabbit + +- **New Features** - Introduced functionality for plotting self and cross correlation heatmaps and + histograms. - Added methods for generating histograms with customizable parameters and optional + saving options. - **Bug Fixes** - Enhanced error handling for plot saving to prevent overwriting + existing files. - **Tests** - Added a comprehensive suite of unit tests for correlation plotting + functionalities, ensuring correct outputs and file handling. + + ## v1.31.0 (2024-12-19) ### Features diff --git a/pyproject.toml b/pyproject.toml index 4185119..1934f07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "readii" -version = "1.31.0" +version = "1.32.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 93ce90a..0b2d674 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.31.0" +__version__ = "1.32.0"