[core] update version number

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
This commit is contained in:
Uwe
2022-06-20 00:56:55 +02:00
parent 75ce475d86
commit 552e0bdd3a
6 changed files with 7 additions and 7 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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(

View File

@@ -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}"

View File

@@ -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}"

View File

@@ -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}"