diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 57b3a77c..be21b6a2 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -2,7 +2,7 @@ Version History *************** -0.19.1 - Unreleased +0.19.1 - 2023-01-09 =================== Fixed diff --git a/include/loot/loot_version.h b/include/loot/loot_version.h index 3a8e87cd..f91ccf21 100644 --- a/include/loot/loot_version.h +++ b/include/loot/loot_version.h @@ -37,7 +37,7 @@ inline constexpr unsigned int LIBLOOT_VERSION_MAJOR = 0; inline constexpr unsigned int LIBLOOT_VERSION_MINOR = 19; /** @brief libloot's patch version number. */ -inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 0; +inline constexpr unsigned int LIBLOOT_VERSION_PATCH = 1; /** * @brief Get the library version. diff --git a/src/api/resource.rc b/src/api/resource.rc index 1dad28be..14c2dbc4 100644 --- a/src/api/resource.rc +++ b/src/api/resource.rc @@ -2,8 +2,8 @@ #include 1 VERSIONINFO -FILEVERSION 0, 19, 0, 0 -PRODUCTVERSION 0, 19, 0, 0 +FILEVERSION 0, 19, 1, 0 +PRODUCTVERSION 0, 19, 1, 0 FILEOS VOS__WINDOWS32 FILETYPE VFT_DLL BEGIN @@ -13,12 +13,12 @@ BLOCK "040904b0" BEGIN VALUE "CompanyName", "LOOT" VALUE "FileDescription", "Library providing LOOT's core functionality" -VALUE "FileVersion", "0.19.0" +VALUE "FileVersion", "0.19.1" VALUE "InternalName", "loot" VALUE "LegalCopyright", "Copyright (C) 2013-2022 Oliver Hamlet" VALUE "OriginalFilename", "loot.dll" VALUE "ProductName", "LOOT" -VALUE "ProductVersion", "0.19.0" +VALUE "ProductVersion", "0.19.1" END END BLOCK "VarFileInfo"