Skip to content

Commit

Permalink
Bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Nov 2, 2023
1 parent 3a163af commit 9c166c2
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.2
~~~~
* ENH: Add support for Python 3.12 #246

4.1.1
~~~~
* FIX: ``get_stats`` is no longer slowed down when profiling many code sections #236
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.1'
__version__ = '4.1.2'

# 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.1'
__version__ = '4.1.2'

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.1'
__version__ = '4.1.2'


def load_ipython_extension(ip):
Expand Down

0 comments on commit 9c166c2

Please sign in to comment.