Skip to content

Commit d290c72

Browse files
authored
Preparing for release of 2.8.0 (#206)
1 parent 07d2a77 commit d290c72

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

doc/changelog.rst

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Changelog
22
=========
33

4+
* Benchmarks now have a timeout.
5+
Patch by Diego Russo.
6+
* The example code in bench_time_func.py uses the more modern `time.perf_counter()`.
7+
Patch by Hajime Senuma.
8+
* pystats are now correctly collected in subprocesses.
9+
Patch by Michael Droettboom.
10+
* pyperf now supports "hooks" to add custom functionality around each benchmarking call.
11+
pystats are no longer collected automatically, and you must pass `--hook pystats`.
12+
Patch by Michael Droettboom.
13+
* Memory units are now correctly stated in KiB and MiB.
14+
Patch by Ungve Mardal Moe.
15+
* max_mem_rss is now correctly measured on macOS.
16+
Patch by Michael Droettboom.
17+
* `pyperf system tune` now works correctly on aarch64.
18+
Patch by Diego Russo.
19+
420
Version 2.7.0 (2024-05-18)
521
---------------------------
622

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = release = '2.7.0'
53+
version = release = '2.8.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# 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, 7, 0)
3+
VERSION = (2, 8, 0)
44
__version__ = '.'.join(map(str, VERSION))
55

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

0 commit comments

Comments
 (0)