File tree 4 files changed +12
-4
lines changed
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
12
Version 2.3.1 (2022-02-03)
5
13
--------------------------
6
14
7
15
* Add a ``Runner.bench_async_func() `` to benchmark an asyncio coroutine.
8
16
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.
10
18
Patch by Tim Felgentreff.
11
19
12
20
Version 2.3.0 (2021-09-28)
Original file line number Diff line number Diff line change 55
55
# built documents.
56
56
#
57
57
# The short X.Y version.
58
- version = release = '2.3.1 '
58
+ version = release = '2.4.0 '
59
59
60
60
# The language for content autogenerated by Sphinx. Refer to documentation
61
61
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
from time import perf_counter
2
2
3
- VERSION = (2 , 3 , 1 )
3
+ VERSION = (2 , 4 , 0 )
4
4
__version__ = '.' .join (map (str , VERSION ))
5
5
6
6
# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
Original file line number Diff line number Diff line change 24
24
# - git commit -a -m "post-release"
25
25
# - git push or send the PR to the repository
26
26
27
- VERSION = '2.3.1 '
27
+ VERSION = '2.4.0 '
28
28
29
29
DESCRIPTION = 'Python module to run and analyze benchmarks'
30
30
CLASSIFIERS = [
You can’t perform that action at this time.
0 commit comments