Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 27, 2024
1 parent d6a2ef4 commit afc4449
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
Changes
=======

4.1.3
~~~~~

4.1.2
~~~~
~~~~~
* ENH: Add support for Python 3.12 #246
* ENH: Add osx universal2 and arm64 wheels #251
* ENH: Fix issue with integer overflow on 32 bit systems #249

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

4.1.0
Expand All @@ -24,7 +27,7 @@ Changes
* ENH: Added readthedocs integration: https://kernprof.readthedocs.io/en/latest/index.html

4.0.3
~~~~
~~~~~
* FIX: Stop requiring bleeding-edge Cython unless necesasry (for Python 3.12). #206

4.0.2
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.2'
__version__ = '4.1.3'

# 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.2'
__version__ = '4.1.3'

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.2'
__version__ = '4.1.3'


def load_ipython_extension(ip):
Expand Down

0 comments on commit afc4449

Please sign in to comment.