diff --git a/ChangeLog.txt b/ChangeLog.txt index 7429e223..98803bc2 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +Version 0.11.1 (unreleased) +--------------- +Bugfix: +* Fix building of the range-v3 dependency. The conan remote URL for this dependency changed and we have to use the new URL. See https://github.com/cryfs/cryfs/issues/398 + Version 0.11.0 --------------- Backwards Compatibility: diff --git a/conanfile.py b/conanfile.py index c9dac7d5..567c8678 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ from conans import ConanFile, CMake class CryFSConan(ConanFile): settings = "os", "compiler", "build_type", "arch" requires = [ - "range-v3/0.11.0@ericniebler/stable", + "range-v3/0.11.0", "spdlog/1.8.5", "boost/1.75.0", ]