Skip to content

Commit

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



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

### Documentation

* docs: Add NBIAToolkit CLI usage to README ([`4cd3785`](https://github.com/jjjermiah/nbia-toolkit/commit/4cd3785efc8673610c7f3faec9678924df6fc277))

* docs: adding requirements.txt back just for the build docs requirements ([`22ccb4c`](https://github.com/jjjermiah/nbia-toolkit/commit/22ccb4ce955b40c28f81ecffaca2da863385db48))

* docs: trying pip install instead of requirements file ([`c258223`](https://github.com/jjjermiah/nbia-toolkit/commit/c2582230b8097245e46b423f6f2d626b9d0e6f1e))

* docs(README): re-structure ([`9a836e5`](https://github.com/jjjermiah/nbia-toolkit/commit/9a836e5b9ba43d4aef7eb76ad7a854fcce554129))

### Feature

* feat: Update dependencies and add CLI tool help messages ([`658b59d`](https://github.com/jjjermiah/nbia-toolkit/commit/658b59d708fafb81794a25d17a8c7a509177e0ce))

* feat(build): add python 3.10 ([`86db037`](https://github.com/jjjermiah/nbia-toolkit/commit/86db037f6381c381709647b0483e19563edf5de5))

### Fix

* fix: Update pyproject.toml ([`b0b0f0a`](https://github.com/jjjermiah/nbia-toolkit/commit/b0b0f0acdbbeeb93900d7ffb57d87be34c84cbf2))

* fix: add setup.py back ([`f7394be`](https://github.com/jjjermiah/nbia-toolkit/commit/f7394beeeb6eea377b4cb863ee03333fe36eddc3))

* fix: Update version number in pyproject.toml and nbia.py ([`63cf16e`](https://github.com/jjjermiah/nbia-toolkit/commit/63cf16ea42bc04e8c0c7d39f15f5cf874dc6ef56))

### Refactor

* refactor: CLI code to improve performance and readability ([`d5bd973`](https://github.com/jjjermiah/nbia-toolkit/commit/d5bd9731bb54a140b518edff33ab7eab90ff1450))

### Unknown

* Merge pull request #69 from jjjermiah/development

Add CLI commands ([`1d77ea1`](https://github.com/jjjermiah/nbia-toolkit/commit/1d77ea1ab4c916d827f71f1712004bf7592fc8d5))

* generalized arg parse ([`58cb470`](https://github.com/jjjermiah/nbia-toolkit/commit/58cb4709a80ee80c89b9db66d6ef87f6addc0e9c))

* testing macOS M1 and python 3.10 ([`a507597`](https://github.com/jjjermiah/nbia-toolkit/commit/a507597f84cf7a343b7504c3b8a5b191ea7e60e9))


## v0.14.0 (2024-01-30)

### Chore

* chore(release): 0.14.0 ([`67233c5`](https://github.com/jjjermiah/nbia-toolkit/commit/67233c588a3d0133f1d0642b787e381414b7b6cb))

### Feature

* feat: Add new CLI commands and improve error handling in DICOMSorter and NBIAClient ([`83fd4de`](https://github.com/jjjermiah/nbia-toolkit/commit/83fd4de204b8c4aac7e5ba4ab1fb2264f36b72aa))
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.14.0"
version = "0.15.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.14.0"
__version__ = "0.15.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.14.0"
__version__ = "0.15.0"


class NBIAClient:
Expand Down

0 comments on commit 0b6c7f1

Please sign in to comment.