From 08c6ad19e6e845d5216cc7cc1525ef2b4640ef96 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 7 Sep 2023 19:35:16 +0100 Subject: [PATCH] Bump version: v4.5.3 --- README.md | 6 ++++++ docs/conf.py | 2 +- pyinstrument/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2283838..9d1adf71 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,12 @@ Known issues Changelog --------- +### v4.5.3 + +_7 Sep 2023_ + +- Fix a problem in the packaging process that prevented upload to PyPI + ### v4.5.2 _1 Sep 2023_ diff --git a/docs/conf.py b/docs/conf.py index 1d087436..423b114a 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 = "4.5.2" +release = "4.5.3" # -- General configuration --------------------------------------------------- diff --git a/pyinstrument/__init__.py b/pyinstrument/__init__.py index bc02a6ba..395a2af6 100644 --- a/pyinstrument/__init__.py +++ b/pyinstrument/__init__.py @@ -3,7 +3,7 @@ from pyinstrument.profiler import Profiler __all__ = ["__version__", "Profiler", "load_ipython_extension"] -__version__ = "4.5.2" +__version__ = "4.5.3" # enable deprecation warnings warnings.filterwarnings("once", ".*", DeprecationWarning, r"pyinstrument\..*") diff --git a/setup.py b/setup.py index 07914e5f..52eb29cb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="pyinstrument", packages=find_namespace_packages(include=["pyinstrument*"]), - version="4.5.2", + version="4.5.3", ext_modules=[ Extension( "pyinstrument.low_level.stat_profile",