Skip to content

Commit

Permalink
pyperf: Prepare releasing 2.6.2 (#171)
Browse files Browse the repository at this point in the history
* pyperf: Prepare releasing 2.6.2

* Update doc/changelog.rst

Co-authored-by: Victor Stinner <vstinner@python.org>

---------

Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
corona10 and vstinner committed Nov 2, 2023
1 parent a81aead commit 3f54b5d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit 3f54b5d

Please sign in to comment.