From 9fc244f7abaad996b8f04410d0d0e2de601b23f0 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Sat, 9 Mar 2024 13:15:30 +0900 Subject: [PATCH] Prepare release 1.11.0 --- doc/changelog.rst | 5 +++++ pyperformance/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 070d2bb5..3611e3c5 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,8 +1,13 @@ Changelog ========= +Version 1.11.0 (2024-03-09) +-------------- * Add a --same-loops option to the run command to use the exact same number of loops as a previous run (without recalibrating). +* Bump pyperf to 2.6.3 +* Fix the django_template benchmark for compatibilty with 3.13 +* Fix benchmark.conf.sample Version 1.10.0 (2023-10-22) -------------- diff --git a/pyperformance/__init__.py b/pyperformance/__init__.py index 3941313b..b4efa911 100644 --- a/pyperformance/__init__.py +++ b/pyperformance/__init__.py @@ -2,7 +2,7 @@ import sys -VERSION = (1, 10, 0) +VERSION = (1, 11, 0) __version__ = '.'.join(map(str, VERSION))