From f7e7fb43fdd6618b40d24d20699246d13ed4f2b9 Mon Sep 17 00:00:00 2001 From: jenisys Date: Sun, 12 Sep 2021 17:41:43 +0200 Subject: [PATCH 1/4] FIX: Incorrect version info --- tag-expressions/python/.bumpversion.cfg | 2 +- tag-expressions/python/cucumber_tag_expressions/__init__.py | 2 +- tag-expressions/python/pytest.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tag-expressions/python/.bumpversion.cfg b/tag-expressions/python/.bumpversion.cfg index 8913668f6f..34dd65b49c 100644 --- a/tag-expressions/python/.bumpversion.cfg +++ b/tag-expressions/python/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.2 +current_version = 4.0.0 files = setup.py cucumber_tag_expressions/__init__.py .bumpversion.cfg pytest.ini commit = False tag = False diff --git a/tag-expressions/python/cucumber_tag_expressions/__init__.py b/tag-expressions/python/cucumber_tag_expressions/__init__.py index 45b88a3433..f3aaf5e3a2 100644 --- a/tag-expressions/python/cucumber_tag_expressions/__init__.py +++ b/tag-expressions/python/cucumber_tag_expressions/__init__.py @@ -16,4 +16,4 @@ from __future__ import absolute_import from .parser import parse, TagExpressionParser, TagExpressionError -__version__ = "1.1.2" +__version__ = "4.0.0" diff --git a/tag-expressions/python/pytest.ini b/tag-expressions/python/pytest.ini index 7184be063f..6a911dcd00 100644 --- a/tag-expressions/python/pytest.ini +++ b/tag-expressions/python/pytest.ini @@ -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.0 --html=build/testing/report.html --self-contained-html --junit-xml=build/testing/report.xml From 2801b270f6f9adb6bf3c16ad09b5954363317b6b Mon Sep 17 00:00:00 2001 From: jenisys Date: Sun, 12 Sep 2021 17:43:01 +0200 Subject: [PATCH 2/4] FIX: Badge for CI build server status (was: Travis, but is now: CircleCI) --- tag-expressions/python/README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tag-expressions/python/README.rst b/tag-expressions/python/README.rst index f8f07392bc..8a1e8e5c31 100644 --- a/tag-expressions/python/README.rst +++ b/tag-expressions/python/README.rst @@ -1,9 +1,9 @@ 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 From 39ba7cf530bff92d5ee7767696bc18b0200f32f0 Mon Sep 17 00:00:00 2001 From: jenisys Date: Sun, 12 Sep 2021 17:57:38 +0200 Subject: [PATCH 3/4] BUMP-VERSION: 4.0.1 (was: 4.0.0) * Prepare for next release * FIXES #1736 (with pull-request: #1742) * tox: Update to newer Python versions --- tag-expressions/python/.bumpversion.cfg | 3 +-- tag-expressions/python/cucumber_tag_expressions/__init__.py | 2 +- tag-expressions/python/pytest.ini | 2 +- tag-expressions/python/setup.py | 2 +- tag-expressions/python/tox.ini | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/tag-expressions/python/.bumpversion.cfg b/tag-expressions/python/.bumpversion.cfg index 34dd65b49c..cc8177cf70 100644 --- a/tag-expressions/python/.bumpversion.cfg +++ b/tag-expressions/python/.bumpversion.cfg @@ -1,7 +1,6 @@ [bumpversion] -current_version = 4.0.0 +current_version = 4.0.1 files = setup.py cucumber_tag_expressions/__init__.py .bumpversion.cfg pytest.ini commit = False tag = False allow_dirty = True - diff --git a/tag-expressions/python/cucumber_tag_expressions/__init__.py b/tag-expressions/python/cucumber_tag_expressions/__init__.py index f3aaf5e3a2..befb5182b7 100644 --- a/tag-expressions/python/cucumber_tag_expressions/__init__.py +++ b/tag-expressions/python/cucumber_tag_expressions/__init__.py @@ -16,4 +16,4 @@ from __future__ import absolute_import from .parser import parse, TagExpressionParser, TagExpressionError -__version__ = "4.0.0" +__version__ = "4.0.1" diff --git a/tag-expressions/python/pytest.ini b/tag-expressions/python/pytest.ini index 6a911dcd00..c693330a6f 100644 --- a/tag-expressions/python/pytest.ini +++ b/tag-expressions/python/pytest.ini @@ -21,7 +21,7 @@ testpaths = tests python_files = test_*.py addopts = --metadata PACKAGE_UNDER_TEST tag-expressions - --metadata PACKAGE_VERSION 4.0.0 + --metadata PACKAGE_VERSION 4.0.1 --html=build/testing/report.html --self-contained-html --junit-xml=build/testing/report.xml diff --git a/tag-expressions/python/setup.py b/tag-expressions/python/setup.py index 759ff97d69..9f299f1882 100644 --- a/tag-expressions/python/setup.py +++ b/tag-expressions/python/setup.py @@ -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", diff --git a/tag-expressions/python/tox.ini b/tag-expressions/python/tox.ini index 2bfe783e52..5695f816bb 100644 --- a/tag-expressions/python/tox.ini +++ b/tag-expressions/python/tox.ini @@ -22,7 +22,7 @@ [tox] minversion = 2.8 -envlist = py27, py37, py36, py35, pypy +envlist = py39, py38, py27, pypy3 skip_missing_interpreters = True From c03e516b82f1ee426191cd8d10914c23177b8392 Mon Sep 17 00:00:00 2001 From: jenisys Date: Sun, 12 Sep 2021 18:50:58 +0200 Subject: [PATCH 4/4] FIX README: Badge was using wrong LICENSE information. --- tag-expressions/python/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tag-expressions/python/README.rst b/tag-expressions/python/README.rst index 8a1e8e5c31..e276aa748c 100644 --- a/tag-expressions/python/README.rst +++ b/tag-expressions/python/README.rst @@ -9,8 +9,8 @@ Cucumber Tag Expressions for Python :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