Updated conan files to use version number
diff --git a/conanfile.py b/conanfile.py
index 81e9c70..3565eb6 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -4,7 +4,7 @@
 
 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 9444b73..5666571 100644
--- a/test_package/conanfile.py
+++ b/test_package/conanfile.py
@@ -10,7 +10,7 @@
     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)