Skip to content

Commit e288333

Browse files
committed
Bump version: v5.1.1
1 parent c9f1312 commit e288333

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

README.md

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

57+
### v5.1.1
58+
59+
_12 August 2025_
60+
61+
- Fix some memory leaks in the low-level C extension (#394)
62+
5763
### v5.1.0
5864

5965
_10 August 2025_

docs/conf.py

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

2424
# The full version, including alpha/beta/rc tags
25-
release = "5.1.0"
25+
release = "5.1.1"
2626

2727

2828
# -- 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.0"
7+
__version__ = "5.1.1"
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.0",
12+
version="5.1.1",
1313
ext_modules=[
1414
Extension(
1515
"pyinstrument.low_level.stat_profile",

0 commit comments

Comments
 (0)