Skip to content

Commit 9540437

Browse files
committed
Bump version: 5.0.0 → 6.0.0
1 parent 9f81754 commit 9540437

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.0.0
2+
current_version = 6.0.0
33
commit = True
44
tag = True
55

.cookiecutterrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default_context:
4040
sphinx_doctest: 'no'
4141
sphinx_theme: sphinx-py3doc-enhanced-theme
4242
test_matrix_separate_coverage: 'no'
43-
version: 5.0.0
43+
version: 6.0.0
4444
version_manager: bump2version
4545
website: http://blog.ionelmc.ro
4646
year_from: '2010'

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ Overview
3939
:alt: Supported implementations
4040
:target: https://pypi.org/project/pytest-cov
4141

42-
.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v5.0.0.svg
42+
.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v6.0.0.svg
4343
:alt: Commits since latest release
44-
:target: https://github.com/pytest-dev/pytest-cov/compare/v5.0.0...master
44+
:target: https://github.com/pytest-dev/pytest-cov/compare/v6.0.0...master
4545

4646
.. end-badges
4747

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
year = '2010-2024'
2222
author = 'pytest-cov contributors'
2323
copyright = f'{year}, {author}'
24-
version = release = '5.0.0'
24+
version = release = '6.0.0'
2525

2626
pygments_style = 'trac'
2727
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def run(self):
7777

7878
setup(
7979
name='pytest-cov',
80-
version='5.0.0',
80+
version='6.0.0',
8181
license='MIT',
8282
description='Pytest plugin for measuring coverage.',
8383
long_description='{}\n{}'.format(read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),

src/pytest_cov/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""pytest-cov: avoid already-imported warning: PYTEST_DONT_REWRITE."""
22

3-
__version__ = '5.0.0'
3+
__version__ = '6.0.0'
44

55
import pytest
66

0 commit comments

Comments
 (0)