diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4b967a7a..fa84f80c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 diff --git a/kernprof.py b/kernprof.py index 7a3ba1e2..e8744969 100755 --- a/kernprof.py +++ b/kernprof.py @@ -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. diff --git a/line_profiler/__init__.py b/line_profiler/__init__.py index 7714e02a..3e9441c9 100644 --- a/line_profiler/__init__.py +++ b/line_profiler/__init__.py @@ -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, diff --git a/line_profiler/line_profiler.py b/line_profiler/line_profiler.py index 40e69f7e..4bb9fa78 100755 --- a/line_profiler/line_profiler.py +++ b/line_profiler/line_profiler.py @@ -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):