From 453430f9b6736dcab5f5935de7db61558b3985ed Mon Sep 17 00:00:00 2001 From: Erik O Gabrielsson Date: Mon, 21 Oct 2024 21:19:33 +0200 Subject: [PATCH] Update version --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- wsidicomizer/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5feed7f..f75cd90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.0] - 2024-10-21 + ### Added - Support for pydicom 3.0. This requires Pyhton >3.10. @@ -267,7 +269,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of wsidicomizer -[Unreleased]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.14.2..HEAD +[Unreleased]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.15.0..HEAD +[0.15.0]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.14.2..0.15.0 [0.14.2]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.14.1..0.14.2 [0.14.1]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.14.0..0.14.1 [0.14.0]: https://github.com/imi-bigpicture/wsidicomizer/compare/0.13.2..0.14.0 diff --git a/pyproject.toml b/pyproject.toml index b14072f..9c9c046 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wsidicomizer" -version = "0.14.2" +version = "0.15.0" description = "Tool for reading WSI files from proprietary formats and optionally convert them to to DICOM" authors = ["Erik O Gabrielsson "] license = "Apache-2.0" diff --git a/wsidicomizer/__init__.py b/wsidicomizer/__init__.py index 9ec31ca..70b8939 100644 --- a/wsidicomizer/__init__.py +++ b/wsidicomizer/__init__.py @@ -14,6 +14,6 @@ from wsidicomizer.wsidicomizer import WsiDicomizer -__version__ = "0.14.2" +__version__ = "0.15.0" __all__ = ["WsiDicomizer"]