Skip to content

Commit

Permalink
Prepare release 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tjni committed Nov 21, 2022
1 parent 5489233 commit 15adb17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
@@ -1,7 +1,7 @@
Changelog
=========

Unreleased
Version 2.6.0 (2022-11-21)
-------------

* Inherit ``PYTHONPATH`` environment variable by default.
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -55,7 +55,7 @@
# built documents.
#
# The short X.Y version.
version = release = '2.5.0'
version = release = '2.6.0'

# 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, 5, 0)
VERSION = (2, 6, 0)
__version__ = '.'.join(map(str, VERSION))

# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@
# - git commit -a -m "post-release"
# - git push or send the PR to the repository

VERSION = '2.5.0'
VERSION = '2.6.0'

DESCRIPTION = 'Python module to run and analyze benchmarks'
CLASSIFIERS = [
Expand Down

0 comments on commit 15adb17

Please sign in to comment.