Skip to content

Commit

Permalink
Bump version: v4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Nov 5, 2022
1 parent cdaff3a commit 2bae41b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ Known issues
Changelog
---------

### v4.4.0

_5 November 2022_

- Adds the class name to methods in the console output (#203)
- Fix a bug that caused pyinstrument machinery to appear at the start of a profile (#215)
- Frames that set a `__traceback_hide__` local variable will now be removed from the output (#217)
- Jupyter/IPython magic now supports async/await, if you run with a `--async_mode=enabled` flag. (#212)
- A big refactor to the backend, allowing more than just static information to be captured. This currently is just powering the class name feature, but more is to come!

### v4.3.0

_21 August 2022_
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 = "4.3.0"
release = "4.4.0"


# -- 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 @@ -2,7 +2,7 @@

from pyinstrument.profiler import Profiler

__version__ = "4.3.0"
__version__ = "4.4.0"

# 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_packages(include=["pyinstrument", "pyinstrument.*"]),
version="4.3.0",
version="4.4.0",
ext_modules=[
Extension(
"pyinstrument.low_level.stat_profile",
Expand Down

0 comments on commit 2bae41b

Please sign in to comment.