Skip to content

Commit

Permalink
Prepare release 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Aug 6, 2022
1 parent 1fd8dae commit 5f7fe38
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.4.1
Version 2.4.1 (2022-08-07)
-------------

* Reject --tracemalloc in ``pyperf command``.
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.4.0'
version = release = '2.4.1'

# 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, 4, 0)
VERSION = (2, 4, 1)
__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.4.0'
VERSION = '2.4.1'

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

0 comments on commit 5f7fe38

Please sign in to comment.