From da065e86e55370216a55838f4fc5ff036e6a5fd5 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 24 Dec 2021 19:06:51 +0000 Subject: [PATCH] Update version and changelog for v0.17.2 release --- docs/api/changelog.rst | 15 +++++++++++++++ src/api/loot_version.cpp.in | 2 +- src/api/resource.rc | 8 ++++---- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index f8760b6c..b6cae9f7 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,21 @@ Version History *************** +0.17.2 - 2021-12-24 +=================== + +Fixed +----- + +- A missing ```` include in ``include/loot/struct/simple_message.h``. +- Invalid configuration causing Read The Docs to fail to build the + documentation. + +Changed +------- + +- Updated libgit2 to v1.3.0. + 0.17.1 - 2021-11-13 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 1799d7a4..846309ad 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 = 17; -const unsigned int LootVersion::patch = 1; +const unsigned int LootVersion::patch = 2; 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 2f9c22b1..0a54ff2a 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 17, 1, 0 -PRODUCTVERSION 0, 17, 1, 0 +FILEVERSION 0, 17, 2, 0 +PRODUCTVERSION 0, 17, 2, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.17.1" +VALUE "FileVersion", "0.17.2" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.17.1" +VALUE "ProductVersion", "0.17.2" END END BLOCK "VarFileInfo"