From a564f230bef115c570e4a7d5413c1b81953bbf4f Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 15 Apr 2018 13:12:02 +0100 Subject: [PATCH] Update wrapper version to 3.1.0 Although the LOOT API update includes breaking changes, none of them are exposed by the Python wrapper, so this is just a minor update. --- src/test.py | 4 ++-- src/wrapper_version.cpp.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test.py b/src/test.py index 7875d0a..f983779 100644 --- a/src/test.py +++ b/src/test.py @@ -51,11 +51,11 @@ class TestLootApi(GameFixture): 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) diff --git a/src/wrapper_version.cpp.in b/src/wrapper_version.cpp.in index 9e2cd95..c4f9ecb 100644 --- a/src/wrapper_version.cpp.in +++ b/src/wrapper_version.cpp.in @@ -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@";