diff --git a/conanfile.py b/conanfile.py index 81e9c708..3565eb6d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ from conans import ConanFile class CatchConan(ConanFile): name = "Catch" - version = "1.9.6" + version = "2.0.0-develop.1" description = "A modern, C++-native, header-only, framework for unit-tests, TDD and BDD" author = "philsquared" generators = "cmake" diff --git a/test_package/conanfile.py b/test_package/conanfile.py index 9444b737..56665718 100644 --- a/test_package/conanfile.py +++ b/test_package/conanfile.py @@ -10,7 +10,7 @@ class CatchConanTest(ConanFile): settings = "os", "compiler", "arch", "build_type" username = getenv("CONAN_USERNAME", "philsquared") channel = getenv("CONAN_CHANNEL", "testing") - requires = "Catch/1.9.5@%s/%s" % (username, channel) + requires = "Catch/2.0.0-develop.1@%s/%s" % (username, channel) def build(self): cmake = CMake(self)