From d8c9b9839a4f20f3f4b7c2f0c0f79e31b24ecf54 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 22 Aug 2020 12:46:19 +0100 Subject: [PATCH] Set version number and changelogs for v0.16.1 --- docs/api/changelog.rst | 11 +++++++++++ src/api/loot_version.cpp.in | 2 +- src/api/resource.rc | 8 ++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index e1b16dc5..2990c5c6 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,17 @@ Version History *************** +0.16.1 - 2020-08-22 +=================== + +Fixed +----- + +- ``File::GetDisplayName()`` now escapes ASCII punctuation characters when + returning the file's name, i.e. when no display name is explicitly set. For + example, ``File("plugin.esp").GetDisplayName()`` will now return + ``plugin\.esp``. + 0.16.0 - 2020-07-12 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 894aef46..920c121a 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 = 16; -const unsigned int LootVersion::patch = 0; +const unsigned int LootVersion::patch = 1; 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 b55c87ea..e06df352 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 16, 0, 0 -PRODUCTVERSION 0, 16, 0, 0 +FILEVERSION 0, 16, 1, 0 +PRODUCTVERSION 0, 16, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.16.0" +VALUE "FileVersion", "0.16.1" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.16.0" +VALUE "ProductVersion", "0.16.1" END END BLOCK "VarFileInfo"