diff --git a/CHANGELOG.md b/CHANGELOG.md index 5655a84..abb92b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ Tested on OS build 22000.434. * Fixed a bug that prevented correct registration of the weather flyout on certain systems (26b6646) (.5) * Fixed a bug that made the weather flyout open with noticeable delay under certain circumstances (.5) * Fixed a bug that prevented correct operation on builds without built-in symbols (#783) (.5) +* Fixed several race conditions that could lead to incorrect operation of the weather widget (for example, `explorer.exe` crashing when disabling or enabling the widget) (.6) ## 22000.469.41 diff --git a/version.h b/version.h index 0b80bca..270b5ee 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22000 #define VER_MINOR 469 #define VER_BUILD_HI 42 -#define VER_BUILD_LO 5 +#define VER_BUILD_LO 6 #define VER_FLAGS VS_FF_PRERELEASE @@ -12,5 +12,5 @@ #define VER_STR(arg) #arg // The String form of the version numbers -#define VER_FILE_STRING VALUE "FileVersion", "22000.469.42.5" -#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.469.42.5" +#define VER_FILE_STRING VALUE "FileVersion", "22000.469.42.6" +#define VER_PRODUCT_STRING VALUE "ProductVersion", "22000.469.42.6"