From d00c59b7b2ca1066223ae8fe5e69fa6c6f81a457 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 2 May 2018 17:55:54 +0100 Subject: [PATCH] Update LOOT API to v0.13.2 --- CMakeLists.txt | 4 ++-- src/test.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e9d2d4..7cec1eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,9 +50,9 @@ add_subdirectory(${PYBIND11_EXTRACTED_PATH}) ####################################### if (CMAKE_SYSTEM_NAME MATCHES "Windows") - set(LOOT_API_URL "https://github.com/loot/loot-api/releases/download/0.13.1/loot_api-0.13.1-0-g1804e45_dev-win32.7z") + set(LOOT_API_URL "https://github.com/loot/loot-api/releases/download/0.13.2/loot_api-0.13.2-0-g5956e60_dev-win32.7z") else() - set(LOOT_API_URL "https://github.com/loot/loot-api/releases/download/0.13.1/loot-api.tar.xz") + set(LOOT_API_URL "https://github.com/loot/loot-api/releases/download/0.13.2/loot-api.tar.xz") endif() ExternalProject_Add(loot-api-c++ diff --git a/src/test.py b/src/test.py index f983779..00c3744 100644 --- a/src/test.py +++ b/src/test.py @@ -45,9 +45,9 @@ class TestLootApi(GameFixture): def test_version(self): self.assertEqual(Version.major, 0) self.assertEqual(Version.minor, 13) - self.assertEqual(Version.patch, 1) + self.assertEqual(Version.patch, 2) self.assertNotEqual(Version.revision, u'') - self.assertEqual(Version.string(), "0.13.1") + self.assertEqual(Version.string(), "0.13.2") def test_wrapper_version(self): self.assertEqual(WrapperVersion.major, 3)