Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions allure-behave/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -15,7 +15,7 @@

install_requires = [
"behave>=1.2.5",
"allure-python-commons==2.4.0"
"allure-python-commons==2.4.1"
]


Expand Down
4 changes: 2 additions & 2 deletions allure-pytest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
pass

PACKAGE = "allure-pytest"
VERSION = "2.4.0"
VERSION = "2.4.1"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -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"
]


Expand Down
2 changes: 1 addition & 1 deletion allure-python-commons-test/setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion allure-python-commons/setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
4 changes: 2 additions & 2 deletions allure-robotframework/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


PACKAGE = "allure-robotframework"
VERSION = "2.4.0"
VERSION = "2.4.1"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -16,7 +16,7 @@
]

install_requires = [
"allure-python-commons==2.4.0",
"allure-python-commons==2.4.1",
]


Expand Down