diff --git a/INSTALL.md b/INSTALL.md index 8b9e329f..1616e1bc 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -143,7 +143,7 @@ Just add a *conanfile.txt* with FunctionalPlus as a requirement and chose the ge ``` [requires] -functionalplus/v0.2.11-p0@dobiasd/stable +functionalplus/v0.2.12-p0@dobiasd/stable [generators] cmake diff --git a/conan_build.py b/conan_build.py index 89f1e197..53636002 100644 --- a/conan_build.py +++ b/conan_build.py @@ -5,7 +5,7 @@ if os.getenv("CXX") == "g++-7": version = os.getenv("TRAVIS_TAG") if not version: - version = "v0.2.8-p0" + version = "dev" reference = "functionalplus/%s" % version username = "dobiasd" channel = "stable" diff --git a/conanfile.py b/conanfile.py index de2c60f4..a9285e60 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,7 @@ class FunctionalPlusConan(ConanFile): name = "functionalplus" - version = "v0.2.8-p0" + version = "v0.2.12-p0" license = "Boost Software License 1.0" url = "https://github.com/Dobiasd/FunctionalPlus" description = "Functional Programming Library for C++. Write concise and readable C++ code."