Skip to content

Commit

Permalink
Bump version: 3.2.2 → 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jan 10, 2020
1 parent eb8cdfc commit c91293b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.2.2
current_version = 3.2.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
=========

3.2.3 (2019-12-06)
3.2.3 (2020-01-10)
------------------

* Fixed "already-imported" pytest warning. Contributed by Jonathan Simon Prates in
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/pytest-benchmark

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/pytest-benchmark/v3.2.2.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/pytest-benchmark/v3.2.3.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/pytest-benchmark/compare/v3.2.2...master
:target: https://github.com/ionelmc/pytest-benchmark/compare/v3.2.3...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
year = '2014-2019'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '3.2.2'
version = release = '3.2.3'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def read(*names, **kwargs):

setup(
name='pytest-benchmark',
version='3.2.2',
version='3.2.3',
license='BSD-2-Clause',
description='A ``pytest`` fixture for benchmarking code. It will group the tests into rounds that are calibrated to the chosen timer. '
'See calibration_ and FAQ_.',
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_benchmark/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""pytest: avoid already-imported warning: PYTEST_DONT_REWRITE."""

__version__ = '3.2.2'
__version__ = '3.2.3'

0 comments on commit c91293b

Please sign in to comment.