From 04088ac8f4340e3098cfe8ee1746da2f6d5a73cc Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 4 Nov 2017 12:29:27 +0000 Subject: [PATCH] Update wrapper version to 3.0.0 --- 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 f49b8f8..4a7d7b2 100644 --- a/src/test.py +++ b/src/test.py @@ -50,12 +50,12 @@ class TestLootApi(GameFixture): self.assertEqual(Version.string(), "0.12.0") def test_wrapper_version(self): - self.assertEqual(WrapperVersion.major, 2) + self.assertEqual(WrapperVersion.major, 3) self.assertEqual(WrapperVersion.minor, 0) self.assertEqual(WrapperVersion.patch, 0) self.assertNotEqual(WrapperVersion.revision, u'') self.assertNotEqual(WrapperVersion.revision, Version.revision) - self.assertEqual(WrapperVersion.string(), "2.0.0") + self.assertEqual(WrapperVersion.string(), "3.0.0") def test_create_db(self): db = create_database(GameType.tes4, self.game_path, self.local_path) diff --git a/src/wrapper_version.cpp.in b/src/wrapper_version.cpp.in index a3ca431..9e2cd95 100644 --- a/src/wrapper_version.cpp.in +++ b/src/wrapper_version.cpp.in @@ -25,7 +25,7 @@ #include "wrapper_version.h" namespace loot { -const unsigned int WrapperVersion::major = 2; +const unsigned int WrapperVersion::major = 3; const unsigned int WrapperVersion::minor = 0; const unsigned int WrapperVersion::patch = 0; const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@";