Skip to content

Commit 3bb7fc2

Browse files
author
github-actions
committed
0.9.0
Automatically generated by python-semantic-release
1 parent c1ed27b commit 3bb7fc2

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33

44

5+
## v0.9.0 (2024-01-21)
6+
7+
### Fix
8+
9+
* fix(md5): Add MD5HashMismatchError class and update validateMD5 function ([`c854242`](https://github.com/jjjermiah/NBIA-toolkit/commit/c85424215a6b46cab0ce2090cf30c0ebdf82b90d))
10+
11+
### Refactor
12+
13+
* refactor: Refactor NBIAClient's _downloadSingleSeries method
14+
15+
This commit refactors the _downloadSingleSeries method in the NBIAClient class. The changes include:
16+
- Reformatting the method signature for better readability
17+
- Adding exception handling for MD5 hash validation
18+
- Commenting out a line of code that is not currently being used
19+
- Adding error handling and logging for sorting DICOM files ([`ff11711`](https://github.com/jjjermiah/NBIA-toolkit/commit/ff1171178842434fc3c562f6dfd5b48488dca481))
20+
21+
* refactor(nbia): remove unused logger method ([`50916a4`](https://github.com/jjjermiah/NBIA-toolkit/commit/50916a4d029250b771d52d4a74f6940dcf4d09db))
22+
23+
### Test
24+
25+
* test: Add unit tests for MD5 validation ([`539f8b0`](https://github.com/jjjermiah/NBIA-toolkit/commit/539f8b061ca51338d9ca01c3b59128aa754fb46a))
26+
27+
* test: Refactor temporary directory variable name in test_nbia.py ([`3cdeb4a`](https://github.com/jjjermiah/NBIA-toolkit/commit/3cdeb4ad30b2b50fb61b211e6b64a6f4b655d569))
28+
29+
### Unknown
30+
31+
* Merge pull request #41 from jjjermiah/27-md5pyadd-tests-and-logging-+-error-handling-for-non-existent-files
32+
33+
27 md5pyadd tests and logging + error handling for non existent files ([`c1ed27b`](https://github.com/jjjermiah/NBIA-toolkit/commit/c1ed27b16a52abd0fb8db2a58b22302f4fbe7c34))
34+
35+
* docs: Update execution counts in Tutorial.ipynb ([`ca80e28`](https://github.com/jjjermiah/NBIA-toolkit/commit/ca80e2845f113272fd6fcce344db70bcd19b226b))
36+
37+
* refactor(dimsort):Refactor DICOMSorter class and add new method to get DICOM file paths ([`573978e`](https://github.com/jjjermiah/NBIA-toolkit/commit/573978e0f21dcdac1d7029e97c84d39572d8a15a))
38+
39+
540
## v0.8.0 (2024-01-21)
641

742
### Build

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nbiatoolkit"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "A python package to query the National Biomedical Imaging Archive (NBIA) database."
55
authors = ["Jermiah Joseph"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.9.0"
44

55
setup(
66
name="nbiatoolkit",

src/nbiatoolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# this file is used to define the __all__ variable
88

99
# set __version__ variable
10-
__version__ = "0.8.0"
10+
__version__ = "0.9.0"
1111

1212
# import the modules
1313
from .nbia import NBIAClient

0 commit comments

Comments
 (0)