Skip to content

Commit

Permalink
ENH: Begin 5.7.0 development
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Nov 26, 2023
1 parent 0a13b9c commit 98a2cba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if(NOT DEFINED Slicer_VERSION_MAJOR)
set(Slicer_VERSION_MAJOR "5")
endif()
if(NOT DEFINED Slicer_VERSION_MINOR)
set(Slicer_VERSION_MINOR "6")
set(Slicer_VERSION_MINOR "7")
endif()
if(NOT DEFINED Slicer_VERSION_PATCH)
set(Slicer_VERSION_PATCH "0")
Expand Down Expand Up @@ -353,6 +353,8 @@ set(_commit_count_offsets
"100"
# Allocate revisions for patch releases between v5.4.0 and v5.5.0
"200"
# Allocate revisions for patch releases between v5.6.0 and v5.7.0
"200"
)
list(JOIN _commit_count_offsets "+" _commit_count_offsets_expr)
math(EXPR _commit_count_offset "${_commit_count_offsets_expr}")
Expand Down
4 changes: 2 additions & 2 deletions Utilities/Scripts/SlicerWizard/__version__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__version_info__ = (
5,
6,
0,
7,
0,
"dev0",
)

__version__ = ".".join(map(str, __version_info__))

0 comments on commit 98a2cba

Please sign in to comment.