Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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