Skip to content

Commit

Permalink
Increment point release number in cmake and windows installer
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianinsaval committed Nov 14, 2023
1 parent e9b426d commit b9bfa5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ project(FreeCAD)

set(PACKAGE_VERSION_MAJOR "0")
set(PACKAGE_VERSION_MINOR "21")
set(PACKAGE_VERSION_PATCH "1") # number of patch release (e.g. "4" for the 0.18.4 release)
set(PACKAGE_VERSION_PATCH "2") # number of patch release (e.g. "4" for the 0.18.4 release)
set(PACKAGE_VERSION_SUFFIX "") # either "dev" for development snapshot or "" (empty string)
set(PACKAGE_BUILD_VERSION "0") # used when the same FreeCAD version will be re-released (for example using an updated LibPack)

Expand Down
4 changes: 2 additions & 2 deletions src/WindowsInstaller/Settings.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ SetCompressor lzma

!define APP_VERSION_MAJOR 0
!define APP_VERSION_MINOR 21
!define APP_VERSION_REVISION 0
!define APP_VERSION_EMERGENCY "RC1" # use "1" for an emergency release of FreeCAD otherwise ""
!define APP_VERSION_REVISION 2
!define APP_VERSION_EMERGENCY "" # use "1" for an emergency release of FreeCAD otherwise ""
# alternatively you can use APP_VERSION_EMERGENCY for a custom suffix of the version number
!define APP_EMERGENCY_DOT "" # use "." for an emergency release of FreeCAD otherwise ""
!define APP_VERSION_BUILD 1 # Start with 1 for the installer releases of each version
Expand Down

0 comments on commit b9bfa5c

Please sign in to comment.