Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
github-actions committed May 23, 2023
1 parent 139d462 commit 46f3d8d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

<!--next-version-placeholder-->

## v1.0.0 (2023-05-23)
### Fix
* **pyproject.toml:** Switch to major versioning ([`139d462`](https://github.com/MedVisBonn/eyeseg/commit/139d46267d80d9b8c1a7f6f9309bd8cf5e21a48c))
* **pyproject.toml;-CITATION.cff:** Fix versioning ([`ca4dbab`](https://github.com/MedVisBonn/eyeseg/commit/ca4dbab76b30c50b35c1333d40fa7198517a7205))

### Breaking
* ([`139d462`](https://github.com/MedVisBonn/eyeseg/commit/139d46267d80d9b8c1a7f6f9309bd8cf5e21a48c))

### Documentation
* **README.md;-CITATION.cff:** Add prefered citation, change from eyeseg to eyesegpy because of availability ([`7d638c0`](https://github.com/MedVisBonn/eyeseg/commit/7d638c03d95a8aac162034ba228a9464aebf821b))
* **README:** Add bibtex reference ([`feead26`](https://github.com/MedVisBonn/eyeseg/commit/feead26cb7c3e63a5c19fb01bbd805584516bcf0))

## v0.1.0 (2023-05-23)
### Feature
* **eyeseg:** Add Bioptigen model ([`8b99881`](https://github.com/MedVisBonn/eyeseg/commit/8b99881ea91a9164515156447e726f9c7d4ff7e4))
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ keywords:
- EZ
license: MIT
commit: 094cca0029cd8b270e99112b778d0bb0aed528cd
version: v0.1.0
version: v1.0.0
date-released: '2023-05-22'
preferred-citation:
authors:
Expand Down
12 changes: 6 additions & 6 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ build_eyeseg:
poetry build

build_gpu: build_eyeseg
DOCKER_BUILDKIT=1 docker build -t olcifer/eyeseg:0.1.0-gpu -f Dockerfile --target gpu ../dist
DOCKER_BUILDKIT=1 docker build -t olcifer/eyeseg:1.0.0-gpu -f Dockerfile --target gpu ../dist
# Needed only for distributing images without dockerhub
#mkdir -p ./dist
#docker save -o ./dist/docker_eyeseg-0.1.0-gpu.tar olcifer/eyeseg:0.1.0-gpu
#gzip ./dist/docker_eyeseg-0.1.0-gpu.tar
#docker save -o ./dist/docker_eyeseg-1.0.0-gpu.tar olcifer/eyeseg:1.0.0-gpu
#gzip ./dist/docker_eyeseg-1.0.0-gpu.tar

build_cpu: build_eyeseg
DOCKER_BUILDKIT=1 docker build --no-cache -t olcifer/eyeseg:0.1.0-cpu -f Dockerfile --target cpu ../dist
DOCKER_BUILDKIT=1 docker build --no-cache -t olcifer/eyeseg:1.0.0-cpu -f Dockerfile --target cpu ../dist
# Needed only for distributing images without dockerhub
#mkdir -p ./dist
#docker save -o ./dist/docker_eyeseg-0.1.0-cpu.tar olcifer/eyeseg:0.1.0-cpu
#gzip ./dist/docker_eyeseg-0.1.0-cpu.tar
#docker save -o ./dist/docker_eyeseg-1.0.0-cpu.tar olcifer/eyeseg:1.0.0-cpu
#gzip ./dist/docker_eyeseg-1.0.0-cpu.tar

build_all: build_gpu build_cpu
2 changes: 1 addition & 1 deletion eyeseg/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "eyesegpy"
packages = [
{ include = "eyeseg"},
]
version = "0.1.0"
version = "1.0.0"
description = "A python command line tool to segment drusen and retinal layers in OCT images."
readme = "README.md"
repository = "https://github.com/MedVisBonn/eyeseg"
Expand Down

0 comments on commit 46f3d8d

Please sign in to comment.