Skip to content

Commit

Permalink
bump version to 0.6.0-dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
sjswerdloff committed Oct 22, 2023
1 parent 6e539c1 commit 379c815
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "onkodicom"
version = "0.5.2"
version = "0.6.0-dev1"
description = "OnkoDICOM is an extensible open source radiation therapy research platform based on the DICOM standard"
authors = ["Ashley Maher <ashley.maher@didymodesigns.com.au>"]
license = "LGPL"
Expand Down
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
from typing import cast, Match

__version__: str = '0.5.2'
__version__: str = '0.6.0-dev1'

result = cast(Match[str], re.match(r'(\d+\.\d+\.\d+).*', __version__))
__version_info__ = tuple(result.group(1).split('.'))

0 comments on commit 379c815

Please sign in to comment.