Skip to content

Commit c584266

Browse files
authored
Prepare the 2.8.1 release (#209)
1 parent 8dd3924 commit c584266

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

doc/changelog.rst

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

4+
Version 2.8.1 (2024-11-13)
5+
--------------------------
6+
7+
* Bugfix: Hooks now work correctly in subprocess benchmarks (`bench.run_command`).
8+
Patch by Michael Droettboom
9+
* Python 3.8 is now unsupported.
10+
Patch by Hugo van Kemenade
11+
12+
Version 2.8.0 (2024-09-30)
13+
--------------------------
14+
415
* Benchmarks now have a timeout.
516
Patch by Diego Russo.
617
* The example code in bench_time_func.py uses the more modern `time.perf_counter()`.

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.8.0'
53+
version = release = '2.8.1'
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, 8, 0)
3+
VERSION = (2, 8, 1)
44
__version__ = '.'.join(map(str, VERSION))
55

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

0 commit comments

Comments
 (0)