Skip to content

Commit 3f54b5d

Browse files
corona10vstinner
andauthored
pyperf: Prepare releasing 2.6.2 (#171)
* pyperf: Prepare releasing 2.6.2 * Update doc/changelog.rst Co-authored-by: Victor Stinner <[email protected]> --------- Co-authored-by: Victor Stinner <[email protected]>
1 parent a81aead commit 3f54b5d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

doc/changelog.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
Changelog
22
=========
33

4+
Version 2.6.2 (2023-11-02)
5+
---------------------------
6+
7+
* Now, pystats stats are collected during warmups.
8+
Patch by Mike Droettboom.
9+
* system: Fix detection of battery.
10+
Patch by Victor Stinner
11+
412
Version 2.6.1 (2023-06-12)
5-
-------------
13+
---------------------------
614

715
* Fix a possible attribute error in argument parsing.
816
Patch by Colton Myers

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = release = '2.6.1'
54+
version = release = '2.6.2'
5555

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

pyperf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from time import perf_counter
22

3-
VERSION = (2, 6, 1)
3+
VERSION = (2, 6, 2)
44
__version__ = '.'.join(map(str, VERSION))
55

66
# Export pyperf.perf_counter for backward compatibility with pyperf 1.7

0 commit comments

Comments
 (0)