Skip to content

Commit 5d4c82a

Browse files
committed
Bump version: v5.1.2
1 parent 77d75d5 commit 5d4c82a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ Known issues
5454
Changelog
5555
---------
5656

57+
### v5.1.2
58+
59+
_4 January 2026_
60+
61+
- Adds the ability to customize description using CLI option `--target-description` (#408)
62+
- You can set the interval for the Django middleware using the PYINSTRUMENT_INTERVAL option (#416)
63+
- HTMLRenderer can now run preprocessors on the input, to manipulate the call tree before writing to HTML (#403)
64+
- Fix a bug where mismatched start/stops can produce "call stack without an active session" errors (#406)
65+
- Limit sample count for the HTML renderer to ensure the browser can load the sample (#407)
66+
5767
### v5.1.1
5868

5969
_12 August 2025_

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Joe Rickerby"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "5.1.1"
26+
release = "5.1.2"
2727

2828

2929
# -- General configuration ---------------------------------------------------

pyinstrument/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from pyinstrument.profiler import Profiler
55

66
__all__ = ["__version__", "Profiler", "load_ipython_extension", "profile"]
7-
__version__ = "5.1.1"
7+
__version__ = "5.1.2"
88

99
# enable deprecation warnings
1010
warnings.filterwarnings("once", ".*", DeprecationWarning, r"pyinstrument\..*")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setup(
1010
name="pyinstrument",
1111
packages=find_namespace_packages(include=["pyinstrument*"]),
12-
version="5.1.1",
12+
version="5.1.2",
1313
ext_modules=[
1414
Extension(
1515
"pyinstrument.low_level.stat_profile",

0 commit comments

Comments
 (0)