Skip to content

Commit

Permalink
Update changelog and version number for 0.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed May 27, 2018
1 parent 9efb93e commit e896217
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions docs/api/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@
Version History
***************

0.13.3 - 2018-05-26
===================

Changed
-------

- Improved cycle avoidance when resolving evaluating plugin groups during
sorting. If enforcing the group difference between two plugins would cause a
cycle and one of the plugins' groups is the default group, that plugin's group
will be ignored for all plugins in groups between default and the other
plugin's group.
- The masterlist repository cloning process no longer moves LOOT's game folders,
so if something goes wrong the process fails more safely.
- The LOOT API is now built with debugging information on Windows, and its PDB
is included in build archives.
- Updated libloadorder to v11.2.2.

Fixed
-----

- Various filesystem-related issues that could be encountered when updating
masterlists, including failure due to file handles being left open while
attempting to remove.
- Building the esplugin and libloadorder dependencies using Rust 1.26.0, which
included a `regression`_ to workspace builds.

.. regression: https://github.com/rust-lang/cargo/issues/5518
0.13.2 - 2018-04-29
===================

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 = 13;
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::string() {
Expand Down
4 changes: 2 additions & 2 deletions src/api/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include <windows.h>

1 VERSIONINFO
FILEVERSION 0, 13, 2, 0
PRODUCTVERSION 0, 13, 2, 0
FILEVERSION 0, 13, 3, 0
PRODUCTVERSION 0, 13, 3, 0
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand Down

0 comments on commit e896217

Please sign in to comment.