From 1fb65022939f811ffbc614f88a367f9990b26a04 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 6 Nov 2016 15:10:57 +0000 Subject: [PATCH] Increment version to 1.1.1 --- 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 b75041c..80968bc 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, 0) + self.assertEqual(WrapperVersion.patch, 1) self.assertNotEqual(WrapperVersion.revision, u'') self.assertNotEqual(WrapperVersion.revision, Version.revision) - self.assertEqual(WrapperVersion.string(), "1.1.0") + self.assertEqual(WrapperVersion.string(), "1.1.1") 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 bfcaa86..63930bf 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 = 0; +const unsigned int WrapperVersion::patch = 1; const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@"; std::string WrapperVersion::string() {