diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index e2ea00de..ae472427 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,23 @@ Version History *************** +0.14.7 - 2019-06-13 +=================== + +Fixed +----- + +- Filename comparisons on Windows now has the same locale-invariant case + insensitivity behaviour as Windows itself, instead of being locale-dependent. +- Filename comparisons on Linux now use ICU case folding to give + locale-invariant results that are much closer to Windows' case insensitivity, + though still not identical. + +Changed +------- + +- Updated libgit2 to v0.28.2. + 0.14.6 - 2019-04-24 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 32e803d9..d72acf8b 100644 --- a/src/api/loot_version.cpp.in +++ b/src/api/loot_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int LootVersion::major = 0; const unsigned int LootVersion::minor = 14; -const unsigned int LootVersion::patch = 6; +const unsigned int LootVersion::patch = 7; const std::string LootVersion::revision = "@GIT_COMMIT_STRING@"; LOOT_API std::string LootVersion::GetVersionString() { diff --git a/src/api/resource.rc b/src/api/resource.rc index 1e924372..db1386f5 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 14, 6, 0 -PRODUCTVERSION 0, 14, 6, 0 +FILEVERSION 0, 14, 7, 0 +PRODUCTVERSION 0, 14, 7, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.14.6" +VALUE "FileVersion", "0.14.7" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.14.6" +VALUE "ProductVersion", "0.14.7" END END BLOCK "VarFileInfo"