diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ae732b..7824881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v0.10.0 (2023-03-30) +### Feature +* **core.plotting:** Adds a scale bar and a watermark to Bscan and Fundus visualizations ([`0e3eaa0`](https://github.com/MedVisBonn/eyepy/commit/0e3eaa0be4420c0d8ba4cbc53381fc36da2cdc81)) + +### Fix +* **eyepy.core:** Fixes bscan_region and bscan_position plotting when plotting only a part of the fundus ([`2c88074`](https://github.com/MedVisBonn/eyepy/commit/2c880743b6329cf24e74f7019035ad455800e89a)) +* **core.grids.py:** Fixes error related to python 3.8 not supporting new type annotation Dict-dict List-list ([`3c6ba41`](https://github.com/MedVisBonn/eyepy/commit/3c6ba41133215bc64efb48f432cb0be78b627b2c)) + +### Documentation +* **core.annotations:** Adds docstrings ([`236c074`](https://github.com/MedVisBonn/eyepy/commit/236c074e8e28eb4ccb5a1e0538237fcec5dff415)) + ## v0.9.2 (2023-03-17) ### Fix * **e2e_reader.py:** Makes exception formatting compatible with python < 3.10 ([`2c4cbb0`](https://github.com/MedVisBonn/eyepy/commit/2c4cbb0c2a91c47d951945aa75145dd1e34e5c4e)) diff --git a/CITATION.cff b/CITATION.cff index 9d15a02..0c4d222 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,8 +19,8 @@ authors: Ophthalmology identifiers: - type: url - value: 'https://github.com/MedVisBonn/eyepy/tree/v0.9.2' -repository-code: 'https://github.com/MedVisBonn/eyepy/tree/v0.9.2' + value: 'https://github.com/MedVisBonn/eyepy/tree/v0.10.0' +repository-code: 'https://github.com/MedVisBonn/eyepy/tree/v0.10.0' abstract: >- Eye imaging data from different device vendors often come in different file formats. Additionally, @@ -45,5 +45,5 @@ keywords: - HEYEX - ETDRS license: MIT -version: v0.9.2 +version: v0.10.0 date-released: '2022-03-02' diff --git a/pyproject.toml b/pyproject.toml index 664520c..eb74d8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "eyepie" packages = [ {include = "eyepy", from = "src"}, ] -version = "0.9.2" +version = "0.10.0" description = "The Python package for working with ophthalmological data." authors = ["Olivier Morelle "] license = "MIT" diff --git a/src/eyepy/__init__.py b/src/eyepy/__init__.py index 2c9b6d2..84269ef 100644 --- a/src/eyepy/__init__.py +++ b/src/eyepy/__init__.py @@ -19,7 +19,7 @@ __author__ = """Olivier Morelle""" __email__ = 'oli4morelle@gmail.com' -__version__ = '0.9.2' +__version__ = '0.10.0' from eyepy.core import drusen from eyepy.core import EyeBscan