Skip to content

Commit

Permalink
Bump version and CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpaperno committed Jul 13, 2022
1 parent 7d10507 commit 1ea637a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand All @@ -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!
2 changes: 1 addition & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions build/version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/version.Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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."
6 changes: 3 additions & 3 deletions src/WASimClient_CLI/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)];
14 changes: 7 additions & 7 deletions src/include/wasim_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ and are available at <http://www.gnu.org/licenses/>.
#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"
Expand Down

0 comments on commit 1ea637a

Please sign in to comment.