From 3f54b5de86402a996b59f82ccf81b289de251dc4 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Fri, 3 Nov 2023 00:12:18 +0900 Subject: [PATCH] pyperf: Prepare releasing 2.6.2 (#171) * pyperf: Prepare releasing 2.6.2 * Update doc/changelog.rst Co-authored-by: Victor Stinner --------- Co-authored-by: Victor Stinner --- doc/changelog.rst | 10 +++++++++- doc/conf.py | 2 +- pyperf/__init__.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index b7eabe60..378de1d6 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,8 +1,16 @@ Changelog ========= +Version 2.6.2 (2023-11-02) +--------------------------- + +* Now, pystats stats are collected during warmups. + Patch by Mike Droettboom. +* system: Fix detection of battery. + Patch by Victor Stinner + Version 2.6.1 (2023-06-12) -------------- +--------------------------- * Fix a possible attribute error in argument parsing. Patch by Colton Myers diff --git a/doc/conf.py b/doc/conf.py index cc811e8d..09540bc3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ # built documents. # # The short X.Y version. -version = release = '2.6.1' +version = release = '2.6.2' # 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 d4ff4f3a..5177a758 100644 --- a/pyperf/__init__.py +++ b/pyperf/__init__.py @@ -1,6 +1,6 @@ from time import perf_counter -VERSION = (2, 6, 1) +VERSION = (2, 6, 2) __version__ = '.'.join(map(str, VERSION)) # Export pyperf.perf_counter for backward compatibility with pyperf 1.7