Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Prepare for 1.15.0 release, bump pyperf to 2.10.0
  • Loading branch information
Fidget-Spinner committed Feb 7, 2026
commit d92b36e69a676296f8ffb9c577e2ec06304acf58
7 changes: 7 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
Changelog
=========

Version 1.15.0
--------------
* Bump ``pyperf`` to 2.10.0

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Version 1.15.0
--------------
* Bump ``pyperf`` to 2.10.0

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Version 1.15.0
--------------
* Bump ``pyperf`` to 2.10.0

Version 1.14.0
--------------
* Add base64 module benchmark (b64, b32, b16, a85, b85)
* Add FastAPI HTTP benchmark
* Add YAML parsing benchmark
* Respect rigorous setting in benchmark configuration files
Comment thread
Fidget-Spinner marked this conversation as resolved.
Comment thread
corona10 marked this conversation as resolved.

Version 1.13.0 (2025-10-27)
--------------
Expand Down
2 changes: 1 addition & 1 deletion pyperformance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
from importlib.metadata import distribution

VERSION = (1, 14, 0)
VERSION = (1, 15, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down
4 changes: 2 additions & 2 deletions pyperformance/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#
# pip-compile --output-file=pyperformance/requirements/requirements.txt requirements.in
#
packaging>=24.1
packaging==26.0
# via -r requirements.in
psutil==7.0.0
# via
# -r requirements.in
# pyperf
pyperf==2.9.0
pyperf==2.10.0
# via -r requirements.in
Loading