From 1ea637a77b5a3d958288724e86b3808cf3a1700b Mon Sep 17 00:00:00 2001 From: Max Paperno Date: Tue, 12 Jul 2022 21:36:35 -0400 Subject: [PATCH] Bump version and CHANGELOG. --- CHANGELOG.md | 7 ++++++- build/build.ps1 | 2 +- build/version.ps1 | 4 ++-- docs/version.Doxyfile | 2 +- src/WASimClient_CLI/AssemblyInfo.cpp | 6 +++--- src/include/wasim_version.h | 14 +++++++------- 6 files changed, 20 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c9161f..49be5f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # WASimCommander - Change Log +## 1.0.0.7-beta3 (Jul-12-2022) +### WASimClient, WASimClient_CLI, WASimUI +* Fixed WASimClient bug introduced in v1.0.0.6 that prevented Client from completing connection to Server on first attempt (but would work on the 2nd). + +--- ## 1.0.0.6-beta2 (Jul-11-2022) ### WASimModule * The `SendKey` command can now accept known key event IDs by name (and do the lookup automatically). @@ -16,6 +21,6 @@ ### WASimUI * Display a message when a string-type calculator result returns an empty string (instead of just blank space). - +--- ## 1.0.0.5-beta1 (Jul-04-2022) - Initial release! diff --git a/build/build.ps1 b/build/build.ps1 index f16d738..123e7ee 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -33,7 +33,7 @@ $PackagePath = "$DistPath\package" $ModulePath = "${SrcPath}\WASimModule\WASimModuleProject\WASimCommander-Module\WASimCommander-Module.xml" $ModuleDest = "${DistPath}\module" $ModulePackage = "${PackagePath}\module" -$DocsDistroPath = "$RootPath\..\WASimCommander-project\gh-pages" +$DocsDistroPath = "$RootPath\..\gh-pages" $testApps = @{ "$BuildPath\CS_BasicConsole\Release-$Platform\$Platform\Release\net6.0-windows" = "$PackagePath\bin\CS_BasicConsole"; diff --git a/build/version.ps1 b/build/version.ps1 index 2e8b2ca..73782ec 100644 --- a/build/version.ps1 +++ b/build/version.ps1 @@ -2,9 +2,9 @@ $VER_MAJOR = 1 $VER_MINOR = 0 $VER_PATCH = 0 -$VER_BUILD = 6 +$VER_BUILD = 7 $VER_COMIT = 0 -$VER_NAME = "-beta2" +$VER_NAME = "-beta3" $PROJECT_NAME = "WASimCommander" $CLIENT_NAME = "WASimClient" diff --git a/docs/version.Doxyfile b/docs/version.Doxyfile index dfe735a..a39d6c1 100644 --- a/docs/version.Doxyfile +++ b/docs/version.Doxyfile @@ -3,5 +3,5 @@ # THIS FILE IS GENERATED BY A SCRIPT, CHANGES WILL NOT PERSIST. EDIT THE CORRESPONDING .in TEMPLATE FILE INSTEAD. PROJECT_NAME = "WASimCommander" -PROJECT_NUMBER = v1.0.0.6-beta2 +PROJECT_NUMBER = v1.0.0.7-beta3 PROJECT_BRIEF = "Remote access to the Microsoft Flight Simulator 2020 Gauge API." diff --git a/src/WASimClient_CLI/AssemblyInfo.cpp b/src/WASimClient_CLI/AssemblyInfo.cpp index deb01b6..092e850 100644 --- a/src/WASimClient_CLI/AssemblyInfo.cpp +++ b/src/WASimClient_CLI/AssemblyInfo.cpp @@ -22,8 +22,8 @@ using namespace System::Security::Permissions; [assembly:AssemblyTrademarkAttribute(L"")]; [assembly:AssemblyCultureAttribute(L"")]; -[assembly:AssemblyVersionAttribute(L"1.0.0.6")]; -[assembly:AssemblyFileVersionAttribute("1.0.0.6")]; -[assembly:AssemblyInformationalVersionAttribute("1.0.0.6-beta2")]; +[assembly:AssemblyVersionAttribute(L"1.0.0.7")]; +[assembly:AssemblyFileVersionAttribute("1.0.0.7")]; +[assembly:AssemblyInformationalVersionAttribute("1.0.0.7-beta3")]; [assembly:ComVisible(false)]; diff --git a/src/include/wasim_version.h b/src/include/wasim_version.h index 62916a5..b24e300 100644 --- a/src/include/wasim_version.h +++ b/src/include/wasim_version.h @@ -29,19 +29,19 @@ and are available at . #define WSMCMND_VER_MAJOR 1 #define WSMCMND_VER_MINOR 0 #define WSMCMND_VER_PATCH 0 -#define WSMCMND_VER_BUILD 6 +#define WSMCMND_VER_BUILD 7 // Git commit hash (top 8 bytes) -#define WSMCMND_VER_COMIT 0x9825B81DUL +#define WSMCMND_VER_COMIT 0x7D105070UL /// Version number in 32 bit "binary coded decimal", eg. 0x01230400 = 1.23.4.0 -#define WSMCMND_VERSION 0x01000006UL +#define WSMCMND_VERSION 0x01000007UL /// Possible version suffix, eg "-beta1" (can be blank for release versions) -#define WSMCMND_VER_NAME "-beta2" +#define WSMCMND_VER_NAME "-beta3" /// Dotted version string Maj.Min.Pat.Bld, eg. "1.23.4.0" -#define WSMCMND_VERSION_STR "1.0.0.6" +#define WSMCMND_VERSION_STR "1.0.0.7" /// Dotted version string with possible suffix, eg. "1.23.4.0-beta1" -#define WSMCMND_VERSION_INFO "1.0.0.6-beta2" +#define WSMCMND_VERSION_INFO "1.0.0.7-beta3" /// Build date & time in ISO-8601 "Zulu Time" format, UTC -#define WSMCMND_BUILD_DATE "2022-07-11T03:45:20Z" +#define WSMCMND_BUILD_DATE "2022-07-13T01:22:09Z" #define WSMCMND_PROJECT_URL "https://github.com/mpaperno/WASimCommander"