Skip to content

Commit e0610c2

Browse files
authored
Prepare 2.9.0 release (#215)
1 parent 1fcdc2b commit e0610c2

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

doc/changelog.rst

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

4+
Version 2.9.0 (2025-03-03)
5+
--------------------------
6+
7+
* Feature: A new hook, ``perf_record``, is available to turn Linux perf profiling on and off around the benchmark code.
8+
To use it, pass ``--hook perf_record``.
9+
Patch by Matt Page.
10+
* Feature: pyperf will now warn if you are collecting too few or too many samples for stable results.
11+
Patch by Michael Droettboom
12+
413
Version 2.8.1 (2024-11-13)
514
--------------------------
615

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.1'
53+
version = release = '2.9.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, 8, 1)
3+
VERSION = (2, 9, 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)