Skip to content

Commit

Permalink
1.29.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed Dec 18, 2024
1 parent b241c42 commit 679ea8a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
# CHANGELOG


## v1.29.0 (2024-12-18)

### Features

- Add CorrelationWriter ([#96](https://github.com/bhklab/readii/pull/96),
[`b241c42`](https://github.com/bhklab/readii/commit/b241c42f576ce967ef8463c74f76397b8e99fcf5))

Created CorrelationWriter class for the analyze portion of the pipeline.

I think there will eventually be a FeatureSetWriter that this should probably inherit from, but I
need the Correlation one now for Aerts.

<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit

- **New Features** - Introduced a `CorrelationWriter` class for managing the writing of correlation
data to files with customizable paths and filenames. - Added support for saving correlation data
in both CSV and Excel formats.

- **Bug Fixes** - Implemented error handling for invalid correlation data, existing files, and
filename format validation.

- **Tests** - Added a comprehensive suite of unit tests for the `CorrelationWriter` class, covering
various scenarios for saving correlation data. <!-- end of auto-generated comment: release notes
by coderabbit.ai -->

---------

Co-authored-by: Jermiah Joseph <[email protected]>


## v1.28.0 (2024-12-18)

### Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "readii"
version = "1.28.0"
version = "1.29.0"
description = "A package to extract radiomic features!"
authors = [{ name = "Katy Scott", email = "[email protected]" }]

Expand Down
2 changes: 1 addition & 1 deletion src/readii/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# read version from installed package
from importlib.metadata import version
__version__ = "1.28.0"
__version__ = "1.29.0"

0 comments on commit 679ea8a

Please sign in to comment.