diff --git a/README.adoc b/README.adoc index 66c615d..20c1757 100644 --- a/README.adoc +++ b/README.adoc @@ -24,7 +24,7 @@ package: [source,python] ---- class MyConan(ConanFile): - python_requires = "b2-helper/[>=0.7.1]@grisumbras/stable" + python_requires = "b2-helper/[>=0.8.0]@grisumbras/stable" ---- == Usage @@ -36,7 +36,7 @@ The simplest way to use the package is via the mixin class: [source,python] ---- class MyConan(ConanFile): - python_requires = "b2-helper/[>=0.7.1]@grisumbras/stable" + python_requires = "b2-helper/[>=0.8.0]@grisumbras/stable" python_requires_extend = "b2-helper.Mixin" ---- diff --git a/conanfile.py b/conanfile.py index 27d8f80..3c77303 100644 --- a/conanfile.py +++ b/conanfile.py @@ -20,7 +20,7 @@ class B2ToolConan(ConanFile): name = "b2-helper" - version = "0.7.1" + version = "0.8.0" description = "conan helper for projects built with b2" url = "http://github.com/grisumbras/b2-helper" homepage = url