From 5f7fe384be9931615c8f3d9ef0a2f835250a03c6 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Sun, 7 Aug 2022 00:37:32 +0900 Subject: [PATCH] Prepare release 2.4.1 --- doc/changelog.rst | 2 +- doc/conf.py | 2 +- pyperf/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 3fc8eddb..099b7553 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -Version 2.4.1 +Version 2.4.1 (2022-08-07) ------------- * Reject --tracemalloc in ``pyperf command``. diff --git a/doc/conf.py b/doc/conf.py index 3de60022..186f2cde 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,7 +55,7 @@ # built documents. # # The short X.Y version. -version = release = '2.4.0' +version = release = '2.4.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 127f6e52..30d1e43c 100644 --- a/pyperf/__init__.py +++ b/pyperf/__init__.py @@ -1,6 +1,6 @@ from time import perf_counter -VERSION = (2, 4, 0) +VERSION = (2, 4, 1) __version__ = '.'.join(map(str, VERSION)) # Export pyperf.perf_counter for backward compatibility with pyperf 1.7 diff --git a/setup.py b/setup.py index a5822ac6..4ef36c5b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # - git commit -a -m "post-release" # - git push or send the PR to the repository -VERSION = '2.4.0' +VERSION = '2.4.1' DESCRIPTION = 'Python module to run and analyze benchmarks' CLASSIFIERS = [