diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e08efc..91117c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.3.2 (2022-06-05) +### Fix +* **main.py:** Fix saving ([`bbb8c13`](https://github.com/MedVisBonn/eyelab/commit/bbb8c136654ac3b620ed077eec9b7a7fb0afb72f)) + ## v0.3.1 (2022-06-03) ### Fix * **layeritem.py:** Check if layer knots are structured correct - update dependencies ([`833f939`](https://github.com/MedVisBonn/eyelab/commit/833f93984906859bcf11261bd266e6c14855da53)) diff --git a/CITATION.cff b/CITATION.cff index 52342f8..e43e70b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,8 +19,8 @@ authors: Ophthalmology identifiers: - type: url - value: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.1' -repository-code: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.1' + value: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.2' +repository-code: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.2' abstract: >- Annotation of eye imaging data such as OCT or fundus images is a common task when building a @@ -43,5 +43,5 @@ keywords: - Areas - HEYEX license: MIT -version: v0.3.1 +version: v0.3.2 date-released: '2022-03-31' diff --git a/README.md b/README.md index fe2ea67..4559e81 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ EyeLab is a multimodal annotation tool for ophthalmological imaging data. ![EyeLab](docs/EyeLab.png) ## Getting Started -If you are on Windows, download the latest executable [here](https://github.com/MedVisBonn/eyelab/releases/latest/download/EyeLab-v0.3.1.exe) and double click it to start EyeLab. +If you are on Windows, download the latest executable [here](https://github.com/MedVisBonn/eyelab/releases/latest/download/EyeLab-v0.3.2.exe) and double click it to start EyeLab. For Linux there is no package, but you might want to have a look at the Developers section for how to set up EyeLab. diff --git a/eyelab/__init__.py b/eyelab/__init__.py index 1800c91..4dc4bb8 100644 --- a/eyelab/__init__.py +++ b/eyelab/__init__.py @@ -3,4 +3,4 @@ __author__ = """Olivier Morelle""" __email__ = "oli4morelle@gmail.com" -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/pyproject.toml b/pyproject.toml index 6460b0e..bd41753 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eyelab" -version = "0.3.1" +version = "0.3.2" description = "Multi-modal annotation tool for eye imaging data" authors = ["Olivier Morelle "] license = "MIT"