Skip to content

Commit c48f643

Browse files
committed
Bump patch version; add changelog note
1 parent e0e3440 commit c48f643

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
=======
33

4+
4.1.1
5+
~~~~
6+
* FIX: ``get_stats`` is no longer slowed down when profiling many code sections #236
7+
48
4.1.0
59
~~~~
610
* FIX: skipzeros now checks for zero hits instead of zero time

kernprof.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def main():
9191

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

9696
# Guard the import of cProfile such that 3.x people
9797
# without lsprof can still use this script.

line_profiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def main():
159159
# from .line_profiler import __version__
160160

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

164164
from .line_profiler import (LineProfiler,
165165
load_ipython_extension, load_stats, main,

line_profiler/line_profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
)
2323

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

2727

2828
def load_ipython_extension(ip):

0 commit comments

Comments
 (0)