From 1298fce6fd38423e654ba0c8c9d6b7e7ff6f5b11 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 12 Jan 2019 15:54:11 +0000 Subject: [PATCH] Update libloot to v0.14.1 --- CMakeLists.txt | 6 +++--- src/test.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fad9150..77d2c93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,12 +55,12 @@ add_subdirectory(${PYBIND11_EXTRACTED_PATH}) if (CMAKE_SYSTEM_NAME MATCHES "Windows") if (NOT "${CMAKE_GENERATOR}" MATCHES "(Win64|IA64)") - set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.0/libloot-0.14.0-0-g2e074a4_dev-win32.7z") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.1/libloot-0.14.1-0-gc8090fe_dev-win32.7z") else() - set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.0/libloot-0.14.0-0-g2e074a4_dev-win64.7z") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.1/libloot-0.14.1-0-gc8090fe_dev-win64.7z") endif() else() - set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.0/libloot.tar.xz") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.1/libloot.tar.xz") endif() ExternalProject_Add(libloot diff --git a/src/test.py b/src/test.py index 7f85592..b6fe1ae 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, 14) - self.assertEqual(Version.patch, 0) + self.assertEqual(Version.patch, 1) self.assertNotEqual(Version.revision, u'') - self.assertEqual(Version.string(), "0.14.0") + self.assertEqual(Version.string(), "0.14.1") def test_wrapper_version(self): self.assertEqual(WrapperVersion.major, 3)