Skip to content

Commit

Permalink
Merge pull request #33 from camlloyd/v0.3.0
Browse files Browse the repository at this point in the history
Prepare for v0.3.0 release
  • Loading branch information
camlloyd authored Nov 13, 2022
2 parents 7e3f2b6 + 39ba96c commit fcee038
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
29 changes: 19 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
# Changelog

## Version 0.3.0
* Add support for Retina Map scan pattern
* Add support for ONH scan pattern
* Add basic logging functionality
* Add workflow for publishing to PyPI
* Add CITATION.cff
* Update GitHub action versions
* Refactoring

## Version 0.2.0
- Add support for en face images.
- Add support for segmentation data.
- Add --output optional argument for specifying a custom output directory.
- Add workflow for publishing to TestPyPI.
- Fix --size optional argument description.
- Format using black and sort imports using isort.
- Prepare for Zenodo release.
- Refactoring.
* Add support for en face images
* Add support for segmentation data
* Add --output optional argument for specifying a custom output directory
* Add workflow for publishing to TestPyPI
* Fix --size optional argument description
* Format using black and sort imports using isort
* Prepare for Zenodo release
* Refactoring

## Version 0.1.1
- Fixed bug when checking for 3D Disc scan pattern.
* Fixed bug when checking for 3D Disc scan pattern

## Version 0.1.0
- Initial release.
* Initial release
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = oct_to_tiff
version = 0.2.0
version = 0.3.0
author = Cameron Lloyd
author_email = [email protected]
description = A command line tool for converting optical coherence tomography angiography (OCTA) data.
Expand Down
2 changes: 1 addition & 1 deletion src/oct_to_tiff/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def main():
action="store_true",
help="convert extracted segmentation data",
)
parser.add_argument("--version", action="version", version="%(prog)s 0.2.0")
parser.add_argument("--version", action="version", version="%(prog)s 0.3.0")
args = parser.parse_args()

input_path = args.input
Expand Down

0 comments on commit fcee038

Please sign in to comment.