diff --git a/CHANGELOG.md b/CHANGELOG.md index a83326c..49b0283 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.6.0 (2022-03-25) +### Feature +* **eyevolume:** Enable use of EyeVolume in eyelab ([`8479628`](https://github.com/MedVisBonn/eyepy/commit/84796285a2eebb65497ac3cd438bdc212aa41e34)) + +### Documentation +* **README.md:** Add Related Projects section with reference to OCT-Converter ([`c273e44`](https://github.com/MedVisBonn/eyepy/commit/c273e448f177712cc67de8215b7afe448b005a4a)) + ## v0.5.0 (2022-03-02) ### Feature * **eyevolume.py:** Enable custom intensity transformation for OCT data ([`761dd5a`](https://github.com/MedVisBonn/eyepy/commit/761dd5a4a360ca46d79ff2074b2644b4c2fd8ca4)) diff --git a/CITATION.cff b/CITATION.cff index 012a635..fa63fc6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,8 +19,8 @@ authors: Ophthalmology identifiers: - type: url - value: 'https://github.com/MedVisBonn/eyepy/tree/v0.5.0' -repository-code: 'https://github.com/MedVisBonn/eyepy/tree/v0.5.0' + value: 'https://github.com/MedVisBonn/eyepy/tree/v0.6.0' +repository-code: 'https://github.com/MedVisBonn/eyepy/tree/v0.6.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.5.0 +version: v0.6.0 date-released: '2022-03-02' diff --git a/eyepy/__init__.py b/eyepy/__init__.py index 8449997..3163817 100644 --- a/eyepy/__init__.py +++ b/eyepy/__init__.py @@ -3,7 +3,7 @@ __author__ = """Olivier Morelle""" __email__ = "oli4morelle@gmail.com" -__version__ = "0.5.0" +__version__ = "0.6.0" from eyepy.core import ( EyeBscan, diff --git a/pyproject.toml b/pyproject.toml index f3a1494..d072649 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "eyepie" packages = [ {include = "eyepy"} ] -version = "0.5.0" +version = "0.6.0" description = "The Python package for working with ophthalmological data." authors = ["Olivier Morelle "] license = "MIT"