diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a838695a..27a843fb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.12.1 +current_version = 3.0.0 commit = True tag = True diff --git a/README.rst b/README.rst index fa49179e..508aff84 100644 --- a/README.rst +++ b/README.rst @@ -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.12.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v3.0.0.svg :alt: Commits since latest release - :target: https://github.com/pytest-dev/pytest-cov/compare/v2.12.1...master + :target: https://github.com/pytest-dev/pytest-cov/compare/v3.0.0...master .. |wheel| image:: https://img.shields.io/pypi/wheel/pytest-cov.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 45da656c..5dd4e74b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ year = '2016' author = 'pytest-cov contributors' copyright = f'{year}, {author}' -version = release = '2.12.1' +version = release = '3.0.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 73370564..503b9aac 100755 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def run(self): setup( name='pytest-cov', - version='2.12.1', + version='3.0.0', license='MIT', description='Pytest plugin for measuring coverage.', long_description='{}\n{}'.format(read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))), diff --git a/src/pytest_cov/__init__.py b/src/pytest_cov/__init__.py index dad3b766..fba1d219 100644 --- a/src/pytest_cov/__init__.py +++ b/src/pytest_cov/__init__.py @@ -1,2 +1,2 @@ """pytest-cov: avoid already-imported warning: PYTEST_DONT_REWRITE.""" -__version__ = '2.12.1' +__version__ = '3.0.0'