From 464462cb1718d96652382f115b2f20ae4d8cbee8 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Wed, 12 Jun 2024 16:15:23 +0000 Subject: [PATCH] chore(sem-ver): 1.5.4 --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d27ec4..3f771f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,19 @@ +## v1.5.4 (2024-06-12) + +### Fix + +* fix: License updated to MIT (#119) ([`6e755dd`](https://github.com/bhklab/med-imagetools/commit/6e755ddc70738da5c7afbced6e061d4e039fbd5f)) + + ## v1.5.3 (2024-06-10) +### Chore + +* chore(sem-ver): 1.5.3 ([`7effcaf`](https://github.com/bhklab/med-imagetools/commit/7effcaffbe054995bb3111d3799bc8b7d9246300)) + ### Fix * fix: Clarified license in README.md (#118) ([`a4899ca`](https://github.com/bhklab/med-imagetools/commit/a4899ca15924dc9fa19f2e1f3964b7bd6c2e2d35)) diff --git a/pyproject.toml b/pyproject.toml index ad41f23..472a418 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "med-imagetools" packages = [{ include = "imgtools", from = "src" }] -version = "1.5.3" +version = "1.5.4" 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 bb9b2cf..0cac074 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from setuptools import setup, find_packages -__version__ = "1.5.3" +__version__ = "1.5.4" with open("README.md", "r") as fh: long_description = fh.read()