Skip to content

Commit

Permalink
prepare release 2.3.0 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 authored Sep 28, 2021
1 parent 6eb6de7 commit 4c27a9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

Version 2.3.0 (2021-xx-xx)
Version 2.3.0 (2021-09-28)
--------------------------

* pyperf ref:`compare_to command <compare_to_cmd>` now supports the
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# built documents.
#
# The short X.Y version.
version = release = '2.2.1'
version = release = '2.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyperf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from time import perf_counter

VERSION = (2, 2, 1)
VERSION = (2, 3, 0)
__version__ = '.'.join(map(str, VERSION))

# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# - git commit -a -m "post-release"
# - git push or send the PR to the repository

VERSION = '2.2.1'
VERSION = '2.3.0'

DESCRIPTION = 'Python module to run and analyze benchmarks'
CLASSIFIERS = [
Expand Down

0 comments on commit 4c27a9b

Please sign in to comment.