Skip to content

Commit

Permalink
Set version number and changelog for v0.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Jun 13, 2019
1 parent 306c57e commit 1878d48
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
Version History
***************

0.14.7 - 2019-06-13
===================

Fixed
-----

- Filename comparisons on Windows now has the same locale-invariant case
insensitivity behaviour as Windows itself, instead of being locale-dependent.
- Filename comparisons on Linux now use ICU case folding to give
locale-invariant results that are much closer to Windows' case insensitivity,
though still not identical.

Changed
-------

- Updated libgit2 to v0.28.2.

0.14.6 - 2019-04-24
===================

Expand Down
2 changes: 1 addition & 1 deletion src/api/loot_version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
namespace loot {
const unsigned int LootVersion::major = 0;
const unsigned int LootVersion::minor = 14;
const unsigned int LootVersion::patch = 6;
const unsigned int LootVersion::patch = 7;
const std::string LootVersion::revision = "@GIT_COMMIT_STRING@";

LOOT_API std::string LootVersion::GetVersionString() {
Expand Down
8 changes: 4 additions & 4 deletions src/api/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
#include <windows.h>

1 VERSIONINFO
FILEVERSION 0, 14, 6, 0
PRODUCTVERSION 0, 14, 6, 0
FILEVERSION 0, 14, 7, 0
PRODUCTVERSION 0, 14, 7, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "0.14.6"
VALUE "FileVersion", "0.14.7"
VALUE "LegalCopyright", "Copyright (C) 2013-2016 WrinklyNinja"
VALUE "ProductVersion", "0.14.6"
VALUE "ProductVersion", "0.14.7"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 1878d48

Please sign in to comment.