Increment the version number to 1.1.0

This commit is contained in:
Oliver Hamlet
2016-11-06 14:51:01 +00:00
parent a3c7f88c56
commit 8847905515
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -44,11 +44,11 @@ class TestLootApi(GameFixture):
def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 1)
self.assertEqual(WrapperVersion.minor, 0)
self.assertEqual(WrapperVersion.patch, 1)
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(), "1.0.1")
self.assertEqual(WrapperVersion.string(), "1.1.0")
def test_create_db(self):
db = create_database(GameType.tes4, self.game_path, self.local_path)
+2 -2
View File
@@ -26,8 +26,8 @@
namespace loot {
const unsigned int WrapperVersion::major = 1;
const unsigned int WrapperVersion::minor = 0;
const unsigned int WrapperVersion::patch = 1;
const unsigned int WrapperVersion::minor = 1;
const unsigned int WrapperVersion::patch = 0;
const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@";
std::string WrapperVersion::string() {