diff --git a/HISTORY.rst b/HISTORY.rst index 8e33999..61b9307 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,3 +6,8 @@ History ------------------ * First release on PyPI. + +0.2.0 (2022-03-22) +------------------ + +* Add Support To Read DICOM WSI and transform to zarr. diff --git a/setup.cfg b/setup.cfg index 43ca23d..afead0e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = False tag = False diff --git a/setup.py b/setup.py index 89b5fc5..9c68163 100644 --- a/setup.py +++ b/setup.py @@ -88,6 +88,6 @@ tests_require=test_requirements, extras_require=extra_requirements, url="https://github.com/john-p/wsic", - version="0.1.0", + version="0.2.0", zip_safe=False, ) diff --git a/wsic/__init__.py b/wsic/__init__.py index bef7ef1..786984c 100644 --- a/wsic/__init__.py +++ b/wsic/__init__.py @@ -2,7 +2,7 @@ __author__ = """John Pocock""" __email__ = "j.c.pocock@warwick.ac.uk" -__version__ = "0.1.0" +__version__ = "0.2.0" from . import codecs, magic, readers, types, writers