-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically generated by python-semantic-release
- Loading branch information
semantic-release
committed
Dec 18, 2024
1 parent
b241c42
commit 679ea8a
Showing
3 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]" }] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|