From 245cf351522ef036399132e4080f1fb0838d5afa Mon Sep 17 00:00:00 2001 From: memsharded Date: Sun, 5 May 2019 00:21:13 +0200 Subject: [PATCH] bumped version --- LICENSE | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 4c3c624d..541f5a3a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2018 JFrog +Copyright (c) 2019 JFrog Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 85558936..10443abe 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.13`` tag in the URL, change it to point to your desired release: +Or it can be used in this way. Note the ``v0.14`` 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://github.com/conan-io/cmake-conan/raw/v0.13/conan.cmake" + file(DOWNLOAD "https://github.com/conan-io/cmake-conan/raw/v0.14/conan.cmake" "${CMAKE_BINARY_DIR}/conan.cmake") endif()