Skip to content

Commit

Permalink
chore(release): 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 3, 2024
1 parent 1a0c816 commit bc51c37
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,51 @@



## v0.16.0 (2024-02-03)

### Chore

* chore: Refactor code formatting and improve readability ([`8bcdfa4`](https://github.com/jjjermiah/nbia-toolkit/commit/8bcdfa49d11f01907f7e9d11744695a9dfd31d46))

### Documentation

* docs: update notebook to fix #71 and add getStudies function ([`958d603`](https://github.com/jjjermiah/nbia-toolkit/commit/958d60376d7e02ebf1d2f0b9a7252b8a7da37738))

* docs: Update README code block to include NBIAToolkit version and test new gha ([`3dc1996`](https://github.com/jjjermiah/nbia-toolkit/commit/3dc1996361e070fafa659d2dd4c06e121052f47c))

### Feature

* feat: Update DICOMSorter command line interface ([`6b6a2a8`](https://github.com/jjjermiah/nbia-toolkit/commit/6b6a2a8050a857bd21d5e5d2c55bf525e9f642c8))

### Fix

* fix: Update imports and add __version__ attribute ([`daad13e`](https://github.com/jjjermiah/nbia-toolkit/commit/daad13e6ee5d472f62307cd1cea7ad8aaf8e2e39))

### Unknown

* Merge pull request #73 from jjjermiah/development

Development ([`1a0c816`](https://github.com/jjjermiah/nbia-toolkit/commit/1a0c81613dd8257f6766e816fe215f2a7adf36db))

* Merge pull request #72 from jjjermiah/48-feature-getstudy

48 feature getstudy ([`9552b6c`](https://github.com/jjjermiah/nbia-toolkit/commit/9552b6c38a7b5b7df2850d1804ec62bf3d250971))

* added getStudies and tests ([`6e9138a`](https://github.com/jjjermiah/nbia-toolkit/commit/6e9138a811a88a4420bc4213094b83d3242b8732))

* Update main.yml ([`e4df33e`](https://github.com/jjjermiah/nbia-toolkit/commit/e4df33edd18b9002c5da3268c9ddb32b9152d80b))


## v0.15.1 (2024-02-02)

### Build

* build: add install with pypi test ([`648ea4f`](https://github.com/jjjermiah/nbia-toolkit/commit/648ea4f6d53b4460bc546693cfe88e418a4d5aa6))

### Chore

* chore(release): 0.15.1 ([`37fb393`](https://github.com/jjjermiah/nbia-toolkit/commit/37fb393dc5c7c5fdc8ce52d89e87eda9efdbe0ae))


## v0.15.0 (2024-02-01)

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.15.1"
version = "0.16.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.15.1"
__version__ = "0.16.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 @@ -14,7 +14,7 @@
import os

# set __version__ variable
__version__ = "0.15.1"
__version__ = "0.16.0"


class NBIAClient:
Expand Down

0 comments on commit bc51c37

Please sign in to comment.