From f8969e85a50a5027ea3d754b995e2a87f47a05a0 Mon Sep 17 00:00:00 2001 From: memsharded Date: Mon, 2 Apr 2018 20:17:35 +0200 Subject: [PATCH] updated Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 905a3bbb..c8c4bac6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The branches in this repo are: You probably want to use a tagged release to ensure controlled upgrades. You can just clone or grab the *conan.cmake* file and put in in your project. -Or it can be used in this way. Note the ``v0.8`` tag in the URL, change it to point to your desired release: +Or it can be used in this way. Note the ``v0.11`` tag in the URL, change it to point to your desired release: ```cmake @@ -28,7 +28,7 @@ project(myproject CXX) # Download automatically, you can also just copy the conan.cmake file if(NOT EXISTS "${CMAKE_BINARY_DIR}/conan.cmake") message(STATUS "Downloading conan.cmake from https://github.com/conan-io/cmake-conan") - file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/v0.10/conan.cmake" + file(DOWNLOAD "https://raw.githubusercontent.com/conan-io/cmake-conan/v0.11/conan.cmake" "${CMAKE_BINARY_DIR}/conan.cmake") endif()