diff --git a/CHANGELOG.md b/CHANGELOG.md index d711ad4..ee9d798 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.4.1 (2023-03-16) +### Fix +* **personalization:** Removed non dicom standard UID generation ([`db9eae8`](https://github.com/a-parida12/pdf2dcm/commit/db9eae87a48b98a43b5f95884adad0854c7d16ed)) + ## v0.4.0 (2022-10-17) ### Feature * **Pdf2RgbSC:** Allow for merging files ([#30](https://github.com/a-parida12/pdf2dcm/issues/30)) ([`7585fc3`](https://github.com/a-parida12/pdf2dcm/commit/7585fc3245cd6fa3e2c0b90a722a5e410324ed48)) diff --git a/pdf2dcm/__init__.py b/pdf2dcm/__init__.py index 926bb76..87a7933 100644 --- a/pdf2dcm/__init__.py +++ b/pdf2dcm/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.4.0" +__version__ = "0.4.1" from .pdf2encaps import Pdf2EncapsDCM # noqa from .pdf2rgb import Pdf2RgbSC # noqa diff --git a/pyproject.toml b/pyproject.toml index 4afd635..f51d30d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pdf2dcm" -version = "0.4.0" +version = "0.4.1" description = "A PDF to Dicom Converter" authors = ["Abhijeet Parida "] license = "MIT"