Skip to content

Commit 556f8f6

Browse files
authored
tag-expressions-python: Prepare release v4.0.1 (#1745)
Prepare for next release: `v4.0.1` * BUMP-VERSION: 4.0.1 (was: 4.0.0) * tox: Update to newer Python versions FIXES: * FIXES #1736 (with pull-request: #1742) OTHERWISE: * FIX: Incorrect version info * FIX README: Badge for CI build server status (was: Travis, but is now: CircleCI) * FIX README: Badge was using wrong LICENSE information.
1 parent 1215d00 commit 556f8f6

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[bumpversion]
2-
current_version = 1.1.2
2+
current_version = 4.0.1
33
files = setup.py cucumber_tag_expressions/__init__.py .bumpversion.cfg pytest.ini
44
commit = False
55
tag = False
66
allow_dirty = True
7-

tag-expressions/python/README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Cucumber Tag Expressions for Python
22
===============================================================================
33

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

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

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

1616
.. |logo| image:: https://github.com/cucumber-ltd/brand/raw/master/images/png/notm/cucumber-black/cucumber-black-128.png

tag-expressions/python/cucumber_tag_expressions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
from __future__ import absolute_import
1717
from .parser import parse, TagExpressionParser, TagExpressionError
1818

19-
__version__ = "1.1.2"
19+
__version__ = "4.0.1"

tag-expressions/python/pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ testpaths = tests
2121
python_files = test_*.py
2222
addopts =
2323
--metadata PACKAGE_UNDER_TEST tag-expressions
24-
--metadata PACKAGE_VERSION 1.1.2
24+
--metadata PACKAGE_VERSION 4.0.1
2525
--html=build/testing/report.html --self-contained-html
2626
--junit-xml=build/testing/report.xml
2727

tag-expressions/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def find_packages_by_root_package(where):
5050
# -----------------------------------------------------------------------------
5151
setup(
5252
name = "cucumber-tag-expressions",
53-
version = "4.0.0",
53+
version = "4.0.1",
5454
author = "Jens Engel",
5555
author_email = "[email protected]",
5656
url = "https://github.com/cucumber/tag-expressions-python",

tag-expressions/python/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
[tox]
2424
minversion = 2.8
25-
envlist = py27, py37, py36, py35, pypy
25+
envlist = py39, py38, py27, pypy3
2626
skip_missing_interpreters = True
2727

2828

0 commit comments

Comments
 (0)