diff --git a/CMakeLists.txt b/CMakeLists.txt index 50720d9..9cd84d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,9 +49,9 @@ add_subdirectory(${PYBIND11_EXTRACTED_PATH}) ####################################### if (CMAKE_SYSTEM_NAME MATCHES "Windows") - set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.0-0-g7b97241_dev.7z") + set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.1-0-gd8f8dc4_master.7z") else() - set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.0-0-g7b97241_0.10.0.tar.xz") + set(LOOT_API_URL "https://bintray.com/wrinklyninja/loot/download_file?file_path=loot-api_0.10.1-0-gd8f8dc4_master.tar.xz") endif() ExternalProject_Add(loot-api-c++ diff --git a/docs/conf.py b/docs/conf.py index f85a853..7da1270 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.10.0/', None), + 'loot_api': ('http://loot.readthedocs.io/en/0.10.1/', None), } diff --git a/src/test.py b/src/test.py index 80968bc..99eb94b 100644 --- a/src/test.py +++ b/src/test.py @@ -38,9 +38,9 @@ class TestLootApi(GameFixture): def test_version(self): self.assertEqual(Version.major, 0) self.assertEqual(Version.minor, 10) - self.assertEqual(Version.patch, 0) + self.assertEqual(Version.patch, 1) self.assertNotEqual(Version.revision, u'') - self.assertEqual(Version.string(), "0.10.0") + self.assertEqual(Version.string(), "0.10.1") def test_wrapper_version(self): self.assertEqual(WrapperVersion.major, 1)