Skip to content

Commit

Permalink
Bump version: 2.11.1 → 2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed May 14, 2021
1 parent f533121 commit 9692bad
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.11.1
current_version = 2.12.0
commit = True
tag = True

Expand All @@ -22,4 +22,3 @@ replace = version = release = '{new_version}'
[bumpversion:file:src/pytest_cov/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -38,9 +38,9 @@ Overview
.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/pytest-cov.svg
:target: https://anaconda.org/conda-forge/pytest-cov

.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v2.11.1.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v2.12.0.svg
:alt: Commits since latest release
:target: https://github.com/pytest-dev/pytest-cov/compare/v2.11.1...master
:target: https://github.com/pytest-dev/pytest-cov/compare/v2.12.0...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/pytest-cov.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -26,7 +26,7 @@
year = '2016'
author = 'pytest-cov contributors'
copyright = '{}, {}'.format(year, author)
version = release = '2.11.1'
version = release = '2.12.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -85,7 +85,7 @@ def run(self):

setup(
name='pytest-cov',
version='2.11.1',
version='2.12.0',
license='MIT',
description='Pytest plugin for measuring coverage.',
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_cov/__init__.py
@@ -1,2 +1,2 @@
"""pytest-cov: avoid already-imported warning: PYTEST_DONT_REWRITE."""
__version__ = '2.11.1'
__version__ = '2.12.0'

0 comments on commit 9692bad

Please sign in to comment.