Skip to content

Commit

Permalink
Bump version: 2.4.0 → 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lamyj committed Mar 11, 2024
1 parent 8a767a7 commit a43ab7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.4.0
current_version = 2.5.0
commit = True
tag = True
sign_tags = True
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif()

project(dicomifier)

set(dicomifier_VERSION 2.4.0)
set(dicomifier_VERSION 2.5.0)
string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)" _ "${dicomifier_VERSION}")
set(dicomifier_MAJOR_VERSION "${CMAKE_MATCH_1}")
set(dicomifier_MINOR_VERSION "${CMAKE_MATCH_2}")
Expand Down
2 changes: 1 addition & 1 deletion src/python/dicomifier/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def main():
parser = argparse.ArgumentParser(description="Dicomifier")

parser.add_argument("--version", action="version", version="%(prog)s 2.4.0")
parser.add_argument("--version", action="version", version="%(prog)s 2.5.0")

parser.add_argument(
"--verbosity", "-v", dest="main_verbosity",
Expand Down

0 comments on commit a43ab7f

Please sign in to comment.