Skip to content

Commit 5f7fe38

Browse files
committed
Prepare release 2.4.1
1 parent 1fd8dae commit 5f7fe38

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
Version 2.4.1
4+
Version 2.4.1 (2022-08-07)
55
-------------
66

77
* Reject --tracemalloc in ``pyperf command``.

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = release = '2.4.0'
58+
version = release = '2.4.1'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

pyperf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from time import perf_counter
22

3-
VERSION = (2, 4, 0)
3+
VERSION = (2, 4, 1)
44
__version__ = '.'.join(map(str, VERSION))
55

66
# Export pyperf.perf_counter for backward compatibility with pyperf 1.7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# - git commit -a -m "post-release"
2525
# - git push or send the PR to the repository
2626

27-
VERSION = '2.4.0'
27+
VERSION = '2.4.1'
2828

2929
DESCRIPTION = 'Python module to run and analyze benchmarks'
3030
CLASSIFIERS = [

0 commit comments

Comments
 (0)