Skip to content

Commit

Permalink
chore(sem-ver): 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 4, 2024
1 parent 440d9b4 commit b1d4c3b
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,45 @@



## v0.23.0 (2024-02-04)

### Build

* build: Update pytest parallelism and add Codecov artifact upload ([`77dc291`](https://github.com/jjjermiah/nbia-toolkit/commit/77dc291a0b60c4958b52b924c0056dedea56971e))

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

### Feature

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

* feat: retrieve new series after a given date, +docs +tests ([`c6a506d`](https://github.com/jjjermiah/nbia-toolkit/commit/c6a506d473b01c63fc9fe88087fd7ecfc3b39d21))

### Fix

* fix: remove sem-ver commit message ([`ccd44bb`](https://github.com/jjjermiah/nbia-toolkit/commit/ccd44bb01e375968903b0b86edd8c2d666a71abf))

* fix: Update .gitignore and build documentation ([`1cf31bb`](https://github.com/jjjermiah/nbia-toolkit/commit/1cf31bb0570d1f79086bf4c4edfdf94a16ebd98a))

* fix: fix error from getCollections conflicting -prefix argument ([`4a7d242`](https://github.com/jjjermiah/nbia-toolkit/commit/4a7d242f5afd137a5384b31edb4bfad1faa65278))

### Unknown

* Merge pull request #84 from jjjermiah/49-feature-getupdatedseries

49 feature getupdatedseries ([`440d9b4`](https://github.com/jjjermiah/nbia-toolkit/commit/440d9b4eee903391c22b647cb43c994e59e30123))

* separate build documentation to prevent running it on every machine ([`473c5a7`](https://github.com/jjjermiah/nbia-toolkit/commit/473c5a72a623fd4241831ae203f522741eee0097))

* Update README with latest version: 0.22.1 ([`67fb6e4`](https://github.com/jjjermiah/nbia-toolkit/commit/67fb6e472cdc6ed53265bd5755103111512a0931))


## v0.22.1 (2024-02-04)

### Chore

* chore(release): 0.22.1 ([`8eae5fc`](https://github.com/jjjermiah/nbia-toolkit/commit/8eae5fc58bae11ec17650cf7c4e9cc90410a96ab))

### Documentation

* docs: Update README.md ([`2326b43`](https://github.com/jjjermiah/nbia-toolkit/commit/2326b4354d66c8b5b7a4379389f35c0edbf336e3))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nbiatoolkit"
version = "0.22.1"
version = "0.23.0"
description = "A python package to query the National Biomedical Imaging Archive (NBIA) database."
authors = ["Jermiah Joseph"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

__version__ = "0.22.1"
__version__ = "0.23.0"

setup(
name="nbiatoolkit",
Expand Down
2 changes: 1 addition & 1 deletion src/nbiatoolkit/nbia.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
from datetime import datetime
# set __version__ variable
__version__ = "0.22.1"
__version__ = "0.23.0"


class NBIAClient:
Expand Down

0 comments on commit b1d4c3b

Please sign in to comment.