diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2704d5..1d27ec45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,19 @@ +## v1.5.3 (2024-06-10) + +### Fix + +* fix: Clarified license in README.md (#118) ([`a4899ca`](https://github.com/bhklab/med-imagetools/commit/a4899ca15924dc9fa19f2e1f3964b7bd6c2e2d35)) + + ## v1.5.2 (2024-05-29) +### Chore + +* chore(sem-ver): 1.5.2 ([`69a651f`](https://github.com/bhklab/med-imagetools/commit/69a651f464b418c92f951be33bb865a04f0c604d)) + ### Fix * fix: upload latest version to pypi ([`1debad3`](https://github.com/bhklab/med-imagetools/commit/1debad3836732faf1a2e3f992a9f1d76943b076e)) diff --git a/pyproject.toml b/pyproject.toml index 65d9b503..ad41f235 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "med-imagetools" packages = [{ include = "imgtools", from = "src" }] -version = "1.5.2" +version = "1.5.3" description = "Med-Imagetools: Transparent and Reproducible Medical Image Processing Pipelines in Python" authors = ["Sejin Kim, Benjamin Haibe-Kains"] license = "GPL-3.0" diff --git a/setup.py b/setup.py index 25ec65e5..bb9b2cfb 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from setuptools import setup, find_packages -__version__ = "1.5.2" +__version__ = "1.5.3" with open("README.md", "r") as fh: long_description = fh.read()