Skip to content

Commit

Permalink
Bump version: v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Jan 23, 2025
1 parent 6eecceb commit 65711d6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyinstrument/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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\..*")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 65711d6

Please sign in to comment.