Skip to content

Commit

Permalink
[core] update version number
Browse files Browse the repository at this point in the history
NOTE: this is purposely version 0.21, despite the release goal is 1.0
Since we issue weekly builds, people might otherwise misunderstand the version

So first when the release goal is reached, FreeCAD becomes version 1.0
  • Loading branch information
donovaly committed Jun 19, 2022
1 parent e9bb9af commit 0678946
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ body:
label: Version
description: What version of FreeCAD are you running?
options:
- 0.19 (Release)
- 0.20 (Development)
- 0.20 (Release)
- 0.21 (Development)
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ project(FreeCAD)

set(PACKAGE_VERSION_NAME "Vulcan")
set(PACKAGE_VERSION_MAJOR "0")
set(PACKAGE_VERSION_MINOR "20")
set(PACKAGE_VERSION_MINOR "21")
set(PACKAGE_VERSION_PATCH "0")
set(PACKAGE_VERSION_SUFFIX "dev") # either "dev" for development snapshot or "" (empty string)
set(FREECAD_VERSION_PATCH "0") # number of patch release (e.g. "4" for the 0.18.4 release)
Expand Down
2 changes: 1 addition & 1 deletion src/Gui/CommandStd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Action * StdCmdAbout::createAction(void)
Action *pcAction;

QString exe = qApp->applicationName();
pcAction = new Action(this,getMainWindow());
pcAction = new Action(this, getMainWindow());
pcAction->setText(QCoreApplication::translate(
this->className(), getMenuText()).arg(exe));
pcAction->setToolTip(QCoreApplication::translate(
Expand Down
2 changes: 1 addition & 1 deletion src/Main/freecad.rc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ BEGIN
VALUE "CompanyName", "${PROJECT_NAME} Team"
VALUE "FileDescription", "${PROJECT_NAME} main executable"
VALUE "InternalName", "FreeCAD.exe"
VALUE "LegalCopyright", "Copyright (C) 2020"
VALUE "LegalCopyright", "Copyright (C) 2022"
VALUE "OriginalFilename", "FreeCAD.exe"
VALUE "ProductName", "${PROJECT_NAME}"
VALUE "${FREECAD_VERSION}.${PACKAGE_VERSION_SUFFIX}"
Expand Down
2 changes: 1 addition & 1 deletion src/Main/freecad.rc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ BEGIN
VALUE "CompanyName", "${PROJECT_NAME} Team"
VALUE "FileDescription", "${PROJECT_NAME} main executable"
VALUE "InternalName", "FreeCAD.exe"
VALUE "LegalCopyright", "Copyright (C) 2020"
VALUE "LegalCopyright", "Copyright (C) 2022"
VALUE "OriginalFilename", "FreeCAD.exe"
VALUE "ProductName", "${PROJECT_NAME}"
VALUE "ProductVersion", "${FREECAD_VERSION}.${FREECAD_VERSION_PATCH}${PACKAGE_VERSION_SUFFIX}"
Expand Down
2 changes: 1 addition & 1 deletion src/Main/freecadCmd.rc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ BEGIN
VALUE "CompanyName", "${PROJECT_NAME} Team"
VALUE "FileDescription", "${PROJECT_NAME} command line executable"
VALUE "InternalName", "FreeCADCmd.exe"
VALUE "LegalCopyright", "Copyright (C) 2020"
VALUE "LegalCopyright", "Copyright (C) 2022"
VALUE "OriginalFilename", "FreeCADCmd.exe"
VALUE "ProductName", "${PROJECT_NAME}"
VALUE "ProductVersion", "${FREECAD_VERSION}.${FREECAD_VERSION_PATCH}${PACKAGE_VERSION_SUFFIX}"
Expand Down

0 comments on commit 0678946

Please sign in to comment.