From c58426688e1a28b2519695a3869b98dc51f3a69d Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Fri, 15 Nov 2024 09:22:11 -0500 Subject: [PATCH] Prepare the 2.8.1 release (#209) --- doc/changelog.rst | 11 +++++++++++ doc/conf.py | 2 +- pyperf/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index bc0e8af..93f46d5 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +Version 2.8.1 (2024-11-13) +-------------------------- + +* Bugfix: Hooks now work correctly in subprocess benchmarks (`bench.run_command`). + Patch by Michael Droettboom +* Python 3.8 is now unsupported. + Patch by Hugo van Kemenade + +Version 2.8.0 (2024-09-30) +-------------------------- + * Benchmarks now have a timeout. Patch by Diego Russo. * The example code in bench_time_func.py uses the more modern `time.perf_counter()`. diff --git a/doc/conf.py b/doc/conf.py index ba73aea..612d1ac 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,7 +50,7 @@ # built documents. # # The short X.Y version. -version = release = '2.8.0' +version = release = '2.8.1' # 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 7b1cd35..63b8333 100644 --- a/pyperf/__init__.py +++ b/pyperf/__init__.py @@ -1,6 +1,6 @@ from time import perf_counter -VERSION = (2, 8, 0) +VERSION = (2, 8, 1) __version__ = '.'.join(map(str, VERSION)) # Export pyperf.perf_counter for backward compatibility with pyperf 1.7