Skip to content

Commit b1d4c3b

Browse files
author
github-actions
committed
chore(sem-ver): 0.23.0
1 parent 440d9b4 commit b1d4c3b

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,45 @@
22

33

44

5+
## v0.23.0 (2024-02-04)
6+
7+
### Build
8+
9+
* build: Update pytest parallelism and add Codecov artifact upload ([`77dc291`](https://github.com/jjjermiah/nbia-toolkit/commit/77dc291a0b60c4958b52b924c0056dedea56971e))
10+
11+
* build: Add labels and update maintainer information in Dockerfile ([`68e8831`](https://github.com/jjjermiah/nbia-toolkit/commit/68e883124dc7a30c197236e64d4bf5d1faa57f4c))
12+
13+
### Feature
14+
15+
* feat: add getStudies and getNewSeries CLI tools ([`99c5777`](https://github.com/jjjermiah/nbia-toolkit/commit/99c5777e58e6d94ff3199f7f8062523c97dc42a7))
16+
17+
* feat: retrieve new series after a given date, +docs +tests ([`c6a506d`](https://github.com/jjjermiah/nbia-toolkit/commit/c6a506d473b01c63fc9fe88087fd7ecfc3b39d21))
18+
19+
### Fix
20+
21+
* fix: remove sem-ver commit message ([`ccd44bb`](https://github.com/jjjermiah/nbia-toolkit/commit/ccd44bb01e375968903b0b86edd8c2d666a71abf))
22+
23+
* fix: Update .gitignore and build documentation ([`1cf31bb`](https://github.com/jjjermiah/nbia-toolkit/commit/1cf31bb0570d1f79086bf4c4edfdf94a16ebd98a))
24+
25+
* fix: fix error from getCollections conflicting -prefix argument ([`4a7d242`](https://github.com/jjjermiah/nbia-toolkit/commit/4a7d242f5afd137a5384b31edb4bfad1faa65278))
26+
27+
### Unknown
28+
29+
* Merge pull request #84 from jjjermiah/49-feature-getupdatedseries
30+
31+
49 feature getupdatedseries ([`440d9b4`](https://github.com/jjjermiah/nbia-toolkit/commit/440d9b4eee903391c22b647cb43c994e59e30123))
32+
33+
* separate build documentation to prevent running it on every machine ([`473c5a7`](https://github.com/jjjermiah/nbia-toolkit/commit/473c5a72a623fd4241831ae203f522741eee0097))
34+
35+
* Update README with latest version: 0.22.1 ([`67fb6e4`](https://github.com/jjjermiah/nbia-toolkit/commit/67fb6e472cdc6ed53265bd5755103111512a0931))
36+
37+
538
## v0.22.1 (2024-02-04)
639

40+
### Chore
41+
42+
* chore(release): 0.22.1 ([`8eae5fc`](https://github.com/jjjermiah/nbia-toolkit/commit/8eae5fc58bae11ec17650cf7c4e9cc90410a96ab))
43+
744
### Documentation
845

946
* docs: Update README.md ([`2326b43`](https://github.com/jjjermiah/nbia-toolkit/commit/2326b4354d66c8b5b7a4379389f35c0edbf336e3))

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.22.1"
3+
version = "0.23.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.22.1"
3+
__version__ = "0.23.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.22.1"
16+
__version__ = "0.23.0"
1717

1818

1919
class NBIAClient:

0 commit comments

Comments
 (0)