From f725dd777a2fea78f0ebabae8b5b5a73f1f2582f Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 7 Dec 2019 17:46:18 +0000 Subject: [PATCH] Set version number and changelogs for v0.15.1 --- docs/api/changelog.rst | 14 ++++++++++++++ src/api/loot_version.cpp.in | 2 +- src/api/resource.rc | 8 ++++---- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index a910b46a..b085f9f6 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,6 +2,19 @@ Version History *************** +0.15.1 - 2019-12-07 +=================== + +Changed +------- + +- The range of FormIDs that are recognised as valid in light masters has been + extended for Fallout 4 plugins, from between 0x800 and 0xFFF inclusive to + between 0x001 and 0xFFF inclusive, to reflect the extended range supported by + Fallout 4 v1.10.162.0.0. The valid range for Skyrim Special Edition plugins is + unchanged. Via esplugin. +- Updated esplugin to v3.3.0. + 0.15.0 - 2019-11-05 =================== @@ -63,6 +76,7 @@ Changed installed. If a plugin's masters are missing, the plugin's total record count will be used as if it was the plugin's override record count to ensure that sorting can still proceed, albeit with potentially reduced accuracy. +- Updated esplugin to v3.2.0. - Updated libgit2 to v0.28.3. 0.14.9 - 2019-07-23 diff --git a/src/api/loot_version.cpp.in b/src/api/loot_version.cpp.in index c0931236..7defedc4 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 = 15; -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 e45f1de7..fcc8d77f 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 15, 0, 0 -PRODUCTVERSION 0, 15, 0, 0 +FILEVERSION 0, 15, 1, 0 +PRODUCTVERSION 0, 15, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_APP BEGIN @@ -11,9 +11,9 @@ BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN -VALUE "FileVersion", "0.15.0" +VALUE "FileVersion", "0.15.1" VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja" -VALUE "ProductVersion", "0.15.0" +VALUE "ProductVersion", "0.15.1" END END BLOCK "VarFileInfo"