From 0bb70c3a2500ddd094bfce4cffaa83d8b7119f50 Mon Sep 17 00:00:00 2001 From: Stas Seliverstov Date: Mon, 18 Jun 2018 13:45:54 +0300 Subject: [PATCH] new version + fix behave url --- README.md | 2 +- allure-behave/setup.py | 4 ++-- allure-pytest/setup.py | 4 ++-- allure-python-commons-test/setup.py | 2 +- allure-python-commons/setup.py | 2 +- allure-robotframework/setup.py | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 00806ac2..4bac4996 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Allure [pytest](http://pytest.org) integration. It's developed as pytest plugin ## Behave -Allure [behave](http://pythonhosted.org/behave/) integration. Just external formatter that produce test results in +Allure [behave](https://behave.readthedocs.io/en/latest/) integration. Just external formatter that produce test results in allure2 format. This package is available on [pypi](https://pypi.python.org/pypi/allure-behave) ## Robot Framework diff --git a/allure-behave/setup.py b/allure-behave/setup.py index f06af031..022aacfa 100644 --- a/allure-behave/setup.py +++ b/allure-behave/setup.py @@ -2,7 +2,7 @@ from setuptools import setup PACKAGE = "allure-behave" -VERSION = "2.4.0" +VERSION = "2.4.1" classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -15,7 +15,7 @@ install_requires = [ "behave>=1.2.5", - "allure-python-commons==2.4.0" + "allure-python-commons==2.4.1" ] diff --git a/allure-pytest/setup.py b/allure-pytest/setup.py index e9788b4a..7949ae13 100644 --- a/allure-pytest/setup.py +++ b/allure-pytest/setup.py @@ -14,7 +14,7 @@ pass PACKAGE = "allure-pytest" -VERSION = "2.4.0" +VERSION = "2.4.1" classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -28,7 +28,7 @@ install_requires = [ "pytest>=3.3.0", "six>=1.9.0", - "allure-python-commons==2.4.0" + "allure-python-commons==2.4.1" ] diff --git a/allure-python-commons-test/setup.py b/allure-python-commons-test/setup.py index 0a7431d4..82fc01c5 100644 --- a/allure-python-commons-test/setup.py +++ b/allure-python-commons-test/setup.py @@ -1,7 +1,7 @@ from setuptools import setup PACKAGE = "allure-python-commons-test" -VERSION = "2.4.0" +VERSION = "2.4.1" install_requires = [ "pyhamcrest>=1.9.0", diff --git a/allure-python-commons/setup.py b/allure-python-commons/setup.py index 6bc29e54..59e1e948 100644 --- a/allure-python-commons/setup.py +++ b/allure-python-commons/setup.py @@ -1,7 +1,7 @@ from setuptools import setup PACKAGE = "allure-python-commons" -VERSION = "2.4.0" +VERSION = "2.4.1" classifiers = [ 'Development Status :: 5 - Production/Stable', diff --git a/allure-robotframework/setup.py b/allure-robotframework/setup.py index 5ee8a8c4..5571a5a2 100644 --- a/allure-robotframework/setup.py +++ b/allure-robotframework/setup.py @@ -3,7 +3,7 @@ PACKAGE = "allure-robotframework" -VERSION = "2.4.0" +VERSION = "2.4.1" classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -16,7 +16,7 @@ ] install_requires = [ - "allure-python-commons==2.4.0", + "allure-python-commons==2.4.1", ]