diff --git a/CHANGELOG.md b/CHANGELOG.md index 15b6f93..f1c312a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.3.0 (2022-06-03) +### Feature +* **eyelab:** Add redo/undo framework for layer editing ([`6436e4d`](https://github.com/MedVisBonn/eyelab/commit/6436e4da5982fe9a39102e115a9bcccd0ca23378)) +* **eyelab:** Work in progress; layeritem integrated with redo/undo framework ([`ffe7148`](https://github.com/MedVisBonn/eyelab/commit/ffe7148f804eaa56b353d0bf4fcfbcfa4a119c13)) +* **eyelab:** Work in progress; integrate redo/undo framework; edit multiple layer segments independent of each other ([`4d05e94`](https://github.com/MedVisBonn/eyelab/commit/4d05e94397e48c54d9432c3132213e2cddf62dc0)) + ## v0.2.0 (2022-04-25) ### Feature * **layereditor.py:** Enable editing the annotation name ([`7774e5d`](https://github.com/MedVisBonn/eyelab/commit/7774e5dc1597bf7da039fdb46186f51a845873b4)) diff --git a/CITATION.cff b/CITATION.cff index 8c1e761..772b00a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,8 +19,8 @@ authors: Ophthalmology identifiers: - type: url - value: 'https://github.com/MedVisBonn/eyelab/tree/v0.2.0' -repository-code: 'https://github.com/MedVisBonn/eyelab/tree/v0.2.0' + value: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.0' +repository-code: 'https://github.com/MedVisBonn/eyelab/tree/v0.3.0' 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.2.0 +version: v0.3.0 date-released: '2022-03-31' diff --git a/README.md b/README.md index d9b1895..0f4ebbc 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.2.0.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.0.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 2f83d9e..763fc2e 100644 --- a/eyelab/__init__.py +++ b/eyelab/__init__.py @@ -3,4 +3,4 @@ __author__ = """Olivier Morelle""" __email__ = "oli4morelle@gmail.com" -__version__ = "0.2.0" +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index 676c05d..2255b3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eyelab" -version = "0.2.0" +version = "0.3.0" description = "Multi-modal annotation tool for eye imaging data" authors = ["Olivier Morelle "] license = "MIT"