Skip to content

Commit 589f2c4

Browse files
author
github-actions
committed
chore(sem-ver): 0.24.0
1 parent c516f96 commit 589f2c4

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v0.24.0 (2024-02-04)
6+
7+
### Chore
8+
9+
* chore: Update README: 0.23.0 ([`0223550`](https://github.com/jjjermiah/nbia-toolkit/commit/02235504d30d063c37022119cadd25f10d5d9d1b))
10+
11+
### Feature
12+
13+
* feat: Add getSeriesMetadata method to NBIAClient class ([`31211a6`](https://github.com/jjjermiah/nbia-toolkit/commit/31211a65e0e4907d764b3d64d82e5735d2385fc9))
14+
15+
### Unknown
16+
17+
* Merge pull request #87 from jjjermiah/61-feature-getseriesmetadata
18+
19+
feat: Add getSeriesMetadata method to NBIAClient class ([`c516f96`](https://github.com/jjjermiah/nbia-toolkit/commit/c516f96f69d81b5768ed48d44102240f0301ef99))
20+
21+
522
## v0.23.0 (2024-02-04)
623

724
### Build
@@ -10,6 +27,10 @@
1027

1128
* build: Add labels and update maintainer information in Dockerfile ([`68e8831`](https://github.com/jjjermiah/nbia-toolkit/commit/68e883124dc7a30c197236e64d4bf5d1faa57f4c))
1229

30+
### Chore
31+
32+
* chore(sem-ver): 0.23.0 ([`b1d4c3b`](https://github.com/jjjermiah/nbia-toolkit/commit/b1d4c3b7cf89a26629ff219411b92e8a0c4fe673))
33+
1334
### Feature
1435

1536
* feat: add getStudies and getNewSeries CLI tools ([`99c5777`](https://github.com/jjjermiah/nbia-toolkit/commit/99c5777e58e6d94ff3199f7f8062523c97dc42a7))

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.23.0"
3+
version = "0.24.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.23.0"
3+
__version__ = "0.24.0"
44

55
setup(
66
name="nbiatoolkit",

src/nbiatoolkit/nbia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import os
1414
from datetime import datetime
1515
# set __version__ variable
16-
__version__ = "0.23.0"
16+
__version__ = "0.24.0"
1717

1818

1919
class NBIAClient:

0 commit comments

Comments
 (0)