From ab3f166237db8d7bc1c113ef7f9caa9c593e0a1b Mon Sep 17 00:00:00 2001 From: Dmitry Arkhipov Date: Sat, 12 Dec 2020 15:02:17 +0300 Subject: [PATCH] version 8.0.0 --- README.adoc | 4 ++-- conanfile.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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