diff --git a/doc/changelog.rst b/doc/changelog.rst index ded41f28..e8d73def 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,18 @@ Changelog ========= +Version 2.7.0 (2024-05-18) +--------------------------- + +* Fix logic in MSR availability test. + Patch by Mike Droettboom. +* Disable tuning TurboBoost setting on non-Intel device. + Patch by Mike Droettboom. +* Include CONFIG_ARGS in Metadata. + Patch by Jeff Glass. +* Support environment variables PYTHON_GIL / PYTHON_CPU_COUNT. + Patch by Donghee Na. + Version 2.6.3 (2024-03-05) --------------------------- diff --git a/doc/conf.py b/doc/conf.py index 732abe5e..7ddbd5f2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,7 +50,7 @@ # built documents. # # The short X.Y version. -version = release = '2.6.3' +version = release = '2.7.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyperf/__init__.py b/pyperf/__init__.py index ba70fb48..f3a5d139 100644 --- a/pyperf/__init__.py +++ b/pyperf/__init__.py @@ -1,6 +1,6 @@ from time import perf_counter -VERSION = (2, 6, 3) +VERSION = (2, 7, 0) __version__ = '.'.join(map(str, VERSION)) # Export pyperf.perf_counter for backward compatibility with pyperf 1.7