From 6b2340313df41fcce609d53b3fcfc9931ee9567b Mon Sep 17 00:00:00 2001 From: Erik O Gabrielsson Date: Wed, 14 Feb 2024 13:20:28 +0100 Subject: [PATCH] Version 0.19.1 --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- wsidicom/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab06edc..c317ea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.19.1] - 2024-02-14 + +### Fixed + +- Correct handling of missing image coordinate system when loading metadata. + ## [0.19.0] - 2024-02-12 ### Added @@ -319,7 +325,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release of wsidicom -[Unreleased]: https://github.com/imi-bigpicture/wsidicom/compare/0.19.0..HEAD +[Unreleased]: https://github.com/imi-bigpicture/wsidicom/compare/0.19.1..HEAD +[0.19.1]: https://github.com/imi-bigpicture/wsidicom/compare/v0.19.0..v0.19.1 [0.19.0]: https://github.com/imi-bigpicture/wsidicom/compare/v0.18.3..v0.19.0 [0.18.3]: https://github.com/imi-bigpicture/wsidicom/compare/v0.18.2..v0.18.3 [0.18.2]: https://github.com/imi-bigpicture/wsidicom/compare/v0.18.1..v0.18.2 diff --git a/pyproject.toml b/pyproject.toml index f6dd270..fb7c216 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wsidicom" -version = "0.19.0" +version = "0.19.1" description = "Tools for handling DICOM based whole scan images" authors = ["Erik O Gabrielsson "] license = "Apache-2.0" diff --git a/wsidicom/__init__.py b/wsidicom/__init__.py index 419e80c..13e25ce 100644 --- a/wsidicom/__init__.py +++ b/wsidicom/__init__.py @@ -51,4 +51,4 @@ from wsidicom.web import WsiDicomWebClient from wsidicom.wsidicom import WsiDicom -__version__ = "0.19.0" +__version__ = "0.19.1"