From 96d4f37bb5779379ba6207473941b408b20c8062 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 13 Nov 2016 15:21:34 +0000 Subject: [PATCH] Increment version to 1.1.2 --- 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 99eb94b..d9935fe 100644 --- a/src/test.py +++ b/src/test.py @@ -45,10 +45,10 @@ class TestLootApi(GameFixture): def test_wrapper_version(self): self.assertEqual(WrapperVersion.major, 1) self.assertEqual(WrapperVersion.minor, 1) - self.assertEqual(WrapperVersion.patch, 1) + self.assertEqual(WrapperVersion.patch, 2) self.assertNotEqual(WrapperVersion.revision, u'') self.assertNotEqual(WrapperVersion.revision, Version.revision) - self.assertEqual(WrapperVersion.string(), "1.1.1") + self.assertEqual(WrapperVersion.string(), "1.1.2") 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 63930bf..f14710d 100644 --- a/src/wrapper_version.cpp.in +++ b/src/wrapper_version.cpp.in @@ -27,7 +27,7 @@ namespace loot { const unsigned int WrapperVersion::major = 1; const unsigned int WrapperVersion::minor = 1; -const unsigned int WrapperVersion::patch = 1; +const unsigned int WrapperVersion::patch = 2; const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@"; std::string WrapperVersion::string() {