Skip to content

Commit

Permalink
Update wrapper version to 3.1.0
Browse files Browse the repository at this point in the history
Although the LOOT API update includes breaking changes, none of them are
exposed by the Python wrapper, so this is just a minor update.
  • Loading branch information
Ortham committed Apr 15, 2018
1 parent 27c8f58 commit a564f23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ def test_version(self):

def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 3)
self.assertEqual(WrapperVersion.minor, 0)
self.assertEqual(WrapperVersion.minor, 1)
self.assertEqual(WrapperVersion.patch, 0)
self.assertNotEqual(WrapperVersion.revision, u'')
self.assertNotEqual(WrapperVersion.revision, Version.revision)
self.assertEqual(WrapperVersion.string(), "3.0.0")
self.assertEqual(WrapperVersion.string(), "3.1.0")

def test_create_db(self):
game = create_game_handle(GameType.tes4, self.game_path, self.local_path)
Expand Down
2 changes: 1 addition & 1 deletion src/wrapper_version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

namespace loot {
const unsigned int WrapperVersion::major = 3;
const unsigned int WrapperVersion::minor = 0;
const unsigned int WrapperVersion::minor = 1;
const unsigned int WrapperVersion::patch = 0;
const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@";

Expand Down

0 comments on commit a564f23

Please sign in to comment.