Skip to content

Commit 6be960e

Browse files
authored
Prepare release 2.4.0 (psf#138)
1 parent f06d3bf commit 6be960e

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

doc/changelog.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
Changelog
22
=========
33

4+
Version 2.4.0 (2022-07-20)
5+
--------------------------
6+
7+
* pyperf now recognizes `pyston <https://github.com/pyston/pyston>`_ as the JIT-based implementation.
8+
Patch by Kevin Modzelewski.
9+
* :ref:`Runner CLI <runner_cli>` now supports ``--profile=PROFILE`` option for profiling benchmarks.
10+
Patch by Michael Droettboom.
11+
412
Version 2.3.1 (2022-02-03)
513
--------------------------
614

715
* Add a ``Runner.bench_async_func()`` to benchmark an asyncio coroutine.
816
Patch by Inada Naoki.
9-
* pyperf now recognizes graalpython as the JIT-based implementation.
17+
* pyperf now recognizes `graalpython <https://github.com/oracle/graalpython>`_ as the JIT-based implementation.
1018
Patch by Tim Felgentreff.
1119

1220
Version 2.3.0 (2021-09-28)

doc/conf.py

+1-1
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.3.1'
58+
version = release = '2.4.0'
5959

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

pyperf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from time import perf_counter
22

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

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

setup.py

+1-1
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.3.1'
27+
VERSION = '2.4.0'
2828

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

0 commit comments

Comments
 (0)