From 27d8c9bce8fff0a09dc57e1f1ae3c7dfba3fb59e Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 2 Jan 2022 11:25:36 +0000 Subject: [PATCH] Update version and changelog for v0.17.3 release --- docs/api/changelog.rst | 13 +++++++++++++ src/api/loot_version.cpp.in | 2 +- src/api/resource.rc | 8 ++++---- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index b6cae9f7..fca741e0 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,19 @@ Version History *************** +0.17.3 - 2022-01-02 +=================== + +Added +----- + +- :cpp:any:`PluginMetadata::AsYaml()` can be used to serialise plugin metadata as YAML. + +Changed +------- + +- Plugin name regular expression objects are now cached between calls to :cpp:any:`DatabaseInterface::LoadLists()`. + 0.17.2 - 2021-12-24 =================== diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index 846309ad..be14df90 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 = 2; +const unsigned int LootVersion::patch = 3; 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 0a54ff2a..f92e330d 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 17, 2, 0 -PRODUCTVERSION 0, 17, 2, 0 +FILEVERSION 0, 17, 3, 0 +PRODUCTVERSION 0, 17, 3, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.17.2" +VALUE "FileVersion", "0.17.3" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.17.2" +VALUE "ProductVersion", "0.17.3" END END BLOCK "VarFileInfo"