Skip to content

Commit 1714978

Browse files
author
github-actions
committed
0.10.0
Automatically generated by python-semantic-release
1 parent 2114f3b commit 1714978

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v0.10.0 (2024-01-21)
6+
7+
### Build
8+
9+
* build: Update Codecov action and add coverage badge ([`c89f010`](https://github.com/jjjermiah/NBIA-toolkit/commit/c89f010c46c9f78404f3f31d0f991393375ca7e8))
10+
11+
### Ci
12+
13+
* ci: Update dependencies in main.yml and requirements.txt ([`76d9fa8`](https://github.com/jjjermiah/NBIA-toolkit/commit/76d9fa86688efb4736db62232a3e74662a902c0e))
14+
15+
* ci: Update pytest command in GitHub Actions workflow ([`5ca643e`](https://github.com/jjjermiah/NBIA-toolkit/commit/5ca643e1ef907f251380b83a25fbec8b3d55f3f5))
16+
17+
* ci: use poetry to run pytest ([`4894aec`](https://github.com/jjjermiah/NBIA-toolkit/commit/4894aec8eb6c01e2590cb3d9e5f3ac7d0f7124ca))
18+
19+
* ci: install pytest and pytest-cov ([`1f2df96`](https://github.com/jjjermiah/NBIA-toolkit/commit/1f2df969691c3c9dac153f8d7ea457e0cadcb7f2))
20+
21+
### Fix
22+
23+
* fix: Refactor imports in nbia.py ([`9bf0f13`](https://github.com/jjjermiah/NBIA-toolkit/commit/9bf0f137f5ee42442491a722ce7890ab8486136d))
24+
25+
### Test
26+
27+
* test: Update pytest coverage command in GitHub workflow
28+
29+
Add source directory for coverage in pyproject.toml
30+
31+
Fix import statements in test files ([`f72c7d8`](https://github.com/jjjermiah/NBIA-toolkit/commit/f72c7d8c0aaeaff7da3f32b38cc821be1e0f7942))
32+
33+
### Unknown
34+
35+
* Merge pull request #42 from jjjermiah/39-add-code-coverage-to-gha
36+
37+
build: Update Codecov action and add coverage badge ([`2114f3b`](https://github.com/jjjermiah/NBIA-toolkit/commit/2114f3b7e2dddebc3757b1282b2242771924f988))
38+
39+
540
## v0.9.0 (2024-01-21)
641

742
### Fix

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.9.0"
3+
version = "0.10.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.9.0"
3+
__version__ = "0.10.0"
44

55
setup(
66
name="nbiatoolkit",

src/nbiatoolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# this file is used to define the __all__ variable
88

99
# set __version__ variable
10-
__version__ = "0.9.0"
10+
__version__ = "0.10.0"
1111

1212
# import the modules
1313
from .nbia import NBIAClient

0 commit comments

Comments
 (0)