Skip to content

Commit

Permalink
Update libloot to v0.14.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ortham committed Mar 25, 2019
1 parent b17b531 commit fe4c3ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,5 +346,5 @@

# 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),
}
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def test_is_compatible(self):
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)
Expand Down

0 comments on commit fe4c3ab

Please sign in to comment.