From 65711d65b766cdd3ece0857bbb8a11c77eac3423 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 23 Jan 2025 14:42:59 +0000 Subject: [PATCH] Bump version: v5.0.1 --- README.md | 8 ++++++++ docs/conf.py | 2 +- pyinstrument/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 76c0897b..744e7bf7 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,14 @@ Known issues Changelog --------- +### v5.0.1 + +_23 January 2025_ + +- Adds a Django option to customise the filename of saved profile runs (#339) +- Improve the FastAPI integration docs (#355) +- Include more options in the IPython magic (#350) + ### v5.0.0 _11 October 2024_ diff --git a/docs/conf.py b/docs/conf.py index 471a66d7..8ec494c4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "Joe Rickerby" # The full version, including alpha/beta/rc tags -release = "5.0.0" +release = "5.0.1" # -- General configuration --------------------------------------------------- diff --git a/pyinstrument/__init__.py b/pyinstrument/__init__.py index 7fc528e2..763c8205 100644 --- a/pyinstrument/__init__.py +++ b/pyinstrument/__init__.py @@ -4,7 +4,7 @@ from pyinstrument.profiler import Profiler __all__ = ["__version__", "Profiler", "load_ipython_extension", "profile"] -__version__ = "5.0.0" +__version__ = "5.0.1" # enable deprecation warnings warnings.filterwarnings("once", ".*", DeprecationWarning, r"pyinstrument\..*") diff --git a/setup.py b/setup.py index 2da8981c..b8f79160 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="pyinstrument", packages=find_namespace_packages(include=["pyinstrument*"]), - version="5.0.0", + version="5.0.1", ext_modules=[ Extension( "pyinstrument.low_level.stat_profile",