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
Prev Previous commit
Next Next commit
Address review
  • Loading branch information
Fidget-Spinner committed Feb 7, 2026
commit 6155cb52acc65a998768980cdd2a67575186e6dd
5 changes: 1 addition & 4 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
Changelog
=========

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

Version 1.14.0
--------------
* Bump ``pyperf`` to 2.10.0
* Add base64 module benchmark (b64, b32, b16, a85, b85)
* Add FastAPI HTTP benchmark
* Add YAML parsing benchmark
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, 15, 0)
VERSION = (1, 14, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down
2 changes: 1 addition & 1 deletion pyperformance/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile --output-file=pyperformance/requirements/requirements.txt requirements.in
#
packaging==26.0
packaging>=24.1
# via -r requirements.in
psutil==7.0.0
# via
Expand Down