Skip to content

Commit

Permalink
Update wrapper version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed May 13, 2017
1 parent a94fb19 commit abbc089
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ def test_version(self):
self.assertEqual(Version.string(), "0.11.0")

def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 1)
self.assertEqual(WrapperVersion.minor, 2)
self.assertEqual(WrapperVersion.major, 2)
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(), "1.2.0")
self.assertEqual(WrapperVersion.string(), "2.0.0")

def test_create_db(self):
db = create_database(GameType.tes4, self.game_path, self.local_path)
Expand Down
4 changes: 2 additions & 2 deletions src/wrapper_version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include "wrapper_version.h"

namespace loot {
const unsigned int WrapperVersion::major = 1;
const unsigned int WrapperVersion::minor = 2;
const unsigned int WrapperVersion::major = 2;
const unsigned int WrapperVersion::minor = 0;
const unsigned int WrapperVersion::patch = 0;
const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@";

Expand Down

0 comments on commit abbc089

Please sign in to comment.