From fe4c3ab6b59f42998863d3905067f71bf7269d59 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Mon, 25 Mar 2019 09:47:03 +0000 Subject: [PATCH] Update libloot to v0.14.5 --- CMakeLists.txt | 6 +++--- docs/conf.py | 2 +- test/test.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59b16d3..4dc8e60 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.3/libloot-0.14.3-0-g56d8f78_dev-win32.7z") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot-0.14.5-0-g68ecc02_dev-win32.7z") else() - set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.3/libloot-0.14.3-0-g56d8f78_dev-win64.7z") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot-0.14.5-0-g68ecc02_dev-win64.7z") endif() else() - set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.3/libloot.tar.xz") + set(LIBLOOT_URL "https://github.com/loot/libloot/releases/download/0.14.5/libloot.tar.xz") endif() ExternalProject_Add(libloot diff --git a/docs/conf.py b/docs/conf.py index fcae6fe..22b07c7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -346,5 +346,5 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'loot_api': ('http://loot.readthedocs.io/en/0.14.3/', None), + 'loot_api': ('http://loot.readthedocs.io/en/0.14.5/', None), } diff --git a/test/test.py b/test/test.py index 72e5c65..1c3dd94 100644 --- a/test/test.py +++ b/test/test.py @@ -51,9 +51,9 @@ class TestLootApi(GameFixture): def test_version(self): self.assertEqual(Version.major, 0) self.assertEqual(Version.minor, 14) - self.assertEqual(Version.patch, 3) + self.assertEqual(Version.patch, 5) self.assertNotEqual(Version.revision, u'') - self.assertEqual(Version.string(), "0.14.3") + self.assertEqual(Version.string(), "0.14.5") def test_wrapper_version(self): self.assertEqual(WrapperVersion.major, 4)