Skip to content

Commit 7a8051d

Browse files
committed
[build] Bump version to 1.1.0.0.
1 parent 1fa6414 commit 7a8051d

File tree

6 files changed

+16
-23
lines changed

6 files changed

+16
-23
lines changed

build/version.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
$VER_MAJOR = 1
3-
$VER_MINOR = 0
3+
$VER_MINOR = 1
44
$VER_PATCH = 0
5-
$VER_BUILD = 8
5+
$VER_BUILD = 0
66
$VER_COMIT = 0
7-
$VER_NAME = "-rc1"
7+
$VER_NAME = ""
88

99
$PROJECT_NAME = "WASimCommander"
1010
$CLIENT_NAME = "WASimClient"

docs/version.Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# THIS FILE IS GENERATED BY A SCRIPT, CHANGES WILL NOT PERSIST. EDIT THE CORRESPONDING .in TEMPLATE FILE INSTEAD.
44

55
PROJECT_NAME = "WASimCommander"
6-
PROJECT_NUMBER = v1.0.0.8-rc1
6+
PROJECT_NUMBER = v1.1.0.0
77
PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 Gauge API."

src/WASimClient_CLI/AssemblyInfo.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ using namespace System::Security::Permissions;
2222
[assembly:AssemblyTrademarkAttribute(L"")];
2323
[assembly:AssemblyCultureAttribute(L"")];
2424

25-
[assembly:AssemblyVersionAttribute(L"1.0.0.8")];
26-
[assembly:AssemblyFileVersionAttribute("1.0.0.8")];
27-
[assembly:AssemblyInformationalVersionAttribute("1.0.0.8-rc1")];
25+
[assembly:AssemblyVersionAttribute(L"1.1.0.0")];
26+
[assembly:AssemblyFileVersionAttribute("1.1.0.0")];
27+
[assembly:AssemblyInformationalVersionAttribute("1.1.0.0")];
2828

2929
[assembly:ComVisible(false)];

src/WASimModule/WASimModuleProject/WASimCommander-Module/PackageDefinitions/wasimcommander-module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<AssetPackage ReleaseNotes="PackageDefinitions\wasimcommander-module\ReleaseNotes.xml" Version="1.0.1">
2+
<AssetPackage Version="1.1.0">
33
<ItemSettings>
44
<ContentType>MISC</ContentType>
55
<Title>WASimCommander WASM Module</Title>

src/WASimModule/WASimModuleProject/WASimCommander-Module/PackageDefinitions/wasimcommander-module/ReleaseNotes.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/include/wasim_version.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ and are available at <http://www.gnu.org/licenses/>.
2727
#define WSMCMND_GUI_NAME "WASimUI"
2828

2929
#define WSMCMND_VER_MAJOR 1
30-
#define WSMCMND_VER_MINOR 0
30+
#define WSMCMND_VER_MINOR 1
3131
#define WSMCMND_VER_PATCH 0
32-
#define WSMCMND_VER_BUILD 8
32+
#define WSMCMND_VER_BUILD 0
3333
// Git commit hash (top 8 bytes)
34-
#define WSMCMND_VER_COMIT 0xA985BEC5UL
34+
#define WSMCMND_VER_COMIT 0x88757FD0UL
3535
/// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0
36-
#define WSMCMND_VERSION 0x01000008UL
36+
#define WSMCMND_VERSION 0x01010000UL
3737
/// Possible version suffix, eg "-beta1" (can be blank for release versions)
38-
#define WSMCMND_VER_NAME "-rc1"
38+
#define WSMCMND_VER_NAME ""
3939
/// Dotted version string Maj.Min.Pat.Bld, eg. "1.23.4.0"
40-
#define WSMCMND_VERSION_STR "1.0.0.8"
40+
#define WSMCMND_VERSION_STR "1.1.0.0"
4141
/// Dotted version string with possible suffix, eg. "1.23.4.0-beta1"
42-
#define WSMCMND_VERSION_INFO "1.0.0.8-rc1"
42+
#define WSMCMND_VERSION_INFO "1.1.0.0"
4343
/// Build date & time in ISO-8601 "Zulu Time" format, UTC
44-
#define WSMCMND_BUILD_DATE "2022-08-02T18:48:03Z"
44+
#define WSMCMND_BUILD_DATE "2022-10-14T20:42:42Z"
4545

4646

4747
#define WSMCMND_PROJECT_URL "https://github.com/mpaperno/WASimCommander"

0 commit comments

Comments
 (0)