Skip to content

Commit 5ac2a2d

Browse files
authored
pyperf: Prepare releasing 2.7.0 (#190)
* pyperf: Prepare releasing 2.7.0 * Add empty line
1 parent 75945f4 commit 5ac2a2d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

doc/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
=========
33

4+
Version 2.7.0 (2024-05-18)
5+
---------------------------
6+
7+
* Fix logic in MSR availability test.
8+
Patch by Mike Droettboom.
9+
* Disable tuning TurboBoost setting on non-Intel device.
10+
Patch by Mike Droettboom.
11+
* Include CONFIG_ARGS in Metadata.
12+
Patch by Jeff Glass.
13+
* Support environment variables PYTHON_GIL / PYTHON_CPU_COUNT.
14+
Patch by Donghee Na.
15+
416
Version 2.6.3 (2024-03-05)
517
---------------------------
618

doc/conf.py

Lines changed: 1 addition & 1 deletion
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.6.3'
53+
version = release = '2.7.0'
5454

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

pyperf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from time import perf_counter
22

3-
VERSION = (2, 6, 3)
3+
VERSION = (2, 7, 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)