Skip to content

Commit

Permalink
Bump patch version; add changelog note
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Aug 21, 2023
1 parent e0e3440 commit c48f643
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
=======

4.1.1
~~~~
* FIX: ``get_stats`` is no longer slowed down when profiling many code sections #236

4.1.0
~~~~
* FIX: skipzeros now checks for zero hits instead of zero time
Expand Down
2 changes: 1 addition & 1 deletion kernprof.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def main():

# NOTE: This version needs to be manually maintained in
# line_profiler/line_profiler.py and line_profiler/__init__.py as well
__version__ = '4.1.0'
__version__ = '4.1.1'

# Guard the import of cProfile such that 3.x people
# without lsprof can still use this script.
Expand Down
2 changes: 1 addition & 1 deletion line_profiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def main():
# from .line_profiler import __version__

# NOTE: This needs to be in sync with ../kernprof.py and line_profiler.py
__version__ = '4.1.0'
__version__ = '4.1.1'

from .line_profiler import (LineProfiler,
load_ipython_extension, load_stats, main,
Expand Down
2 changes: 1 addition & 1 deletion line_profiler/line_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
)

# NOTE: This needs to be in sync with ../kernprof.py and __init__.py
__version__ = '4.1.0'
__version__ = '4.1.1'


def load_ipython_extension(ip):
Expand Down

0 comments on commit c48f643

Please sign in to comment.