Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tag-expressions-python: Prepare release v4.0.1 #1745

Merged
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
3 changes: 1 addition & 2 deletions tag-expressions/python/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[bumpversion]
current_version = 1.1.2
current_version = 4.0.1
files = setup.py cucumber_tag_expressions/__init__.py .bumpversion.cfg pytest.ini
commit = False
tag = False
allow_dirty = True

10 changes: 5 additions & 5 deletions tag-expressions/python/README.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Cucumber Tag Expressions for Python
===============================================================================

.. image:: https://img.shields.io/travis/cucumber/tag-expressions-python/master.svg
:target: https://travis-ci.org/cucumber/tag-expressions-python
:alt: Travis CI Build Status
.. image:: https://img.shields.io/circleci/build/github/cucumber/common/main?job=tag-expressions-python
:target: https://circleci.com/gh/cucumber/common
:alt: CI Build Status

.. image:: https://img.shields.io/pypi/v/tag-expressions.svg
:target: https://pypi.python.org/pypi/tag-expressions
:alt: Latest Version

.. image:: https://img.shields.io/pypi/l/tag-expressions.svg
:target: https://pypi.python.org/pypi/tag-expressions/
.. image:: https://img.shields.io/pypi/l/cucumber-tag-expressions.svg
:target: https://pypi.python.org/pypi/cucumber-tag-expressions/
:alt: License

.. |logo| image:: https://github.com/cucumber-ltd/brand/raw/master/images/png/notm/cucumber-black/cucumber-black-128.png
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
from __future__ import absolute_import
from .parser import parse, TagExpressionParser, TagExpressionError

__version__ = "1.1.2"
__version__ = "4.0.1"
2 changes: 1 addition & 1 deletion tag-expressions/python/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ testpaths = tests
python_files = test_*.py
addopts =
--metadata PACKAGE_UNDER_TEST tag-expressions
--metadata PACKAGE_VERSION 1.1.2
--metadata PACKAGE_VERSION 4.0.1
--html=build/testing/report.html --self-contained-html
--junit-xml=build/testing/report.xml

Expand Down
2 changes: 1 addition & 1 deletion tag-expressions/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def find_packages_by_root_package(where):
# -----------------------------------------------------------------------------
setup(
name = "cucumber-tag-expressions",
version = "4.0.0",
version = "4.0.1",
author = "Jens Engel",
author_email = "jenisys@noreply.github.com",
url = "https://github.com/cucumber/tag-expressions-python",
Expand Down
2 changes: 1 addition & 1 deletion tag-expressions/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[tox]
minversion = 2.8
envlist = py27, py37, py36, py35, pypy
envlist = py39, py38, py27, pypy3
skip_missing_interpreters = True


Expand Down