Skip to content

Commit

Permalink
Set version number to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Mar 25, 2019
1 parent fe4c3ab commit d356ac2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/wrapper_version.cpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
namespace loot {
const unsigned int WrapperVersion::major = 4;
const unsigned int WrapperVersion::minor = 0;
const unsigned int WrapperVersion::patch = 1;
const unsigned int WrapperVersion::patch = 2;
const std::string WrapperVersion::revision = "@GIT_COMMIT_STRING@";

std::string WrapperVersion::string() {
Expand Down
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ def test_version(self):
def test_wrapper_version(self):
self.assertEqual(WrapperVersion.major, 4)
self.assertEqual(WrapperVersion.minor, 0)
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(), "4.0.1")
self.assertEqual(WrapperVersion.string(), "4.0.2")

def test_create_db(self):
game = create_game_handle(GameType.tes4, self.game_path, self.local_path)
Expand Down

0 comments on commit d356ac2

Please sign in to comment.