Skip to content

Commit f0a9111

Browse files
committed
Prepare release 2.5.0
1 parent 93cac74 commit f0a9111

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

doc/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
Version 2.5.0 (2022-11-04)
5+
-------------
6+
7+
* Support collecting specialization statistics from running benchmarks.
8+
Patch by Mike Droettboom.
9+
10+
* Recognize new name of Graal-based Python as jitted.
11+
Patch by Michael Droettboom
12+
413
Version 2.4.1 (2022-08-07)
514
-------------
615

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.1'
58+
version = release = '2.5.0'
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, 1)
3+
VERSION = (2, 5, 0)
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.1'
27+
VERSION = '2.5.0'
2828

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

0 commit comments

Comments
 (0)