Skip to content

Commit d231405

Browse files
committed
Get ready for release 1.3.1
1 parent 31ccc65 commit d231405

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,6 @@ rmChangeLog:
9696
#: Create a ChangeLog from git via git log and git2cl
9797
ChangeLog: rmChangeLog
9898
git log --pretty --numstat --summary | $(GIT2CL) >$@
99+
patch -p0 < ChangeLog-spell-corrected.diff
99100

100101
.PHONY: $(PHONY)

NEWS.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
1.3.1 2025-01-15
2+
================
3+
4+
* Revise breakpoint handling; Breakpoints now use code objects, not (possibly ambiguous) function names
5+
* Fix bugs in detecting when stopped at a `def` and in `nextlineno()`
6+
* Better information when current frame is inside a builtin `eval` or `exec` call
7+
* Fix some of the many disasm spec problems.
8+
* Go over "eval", "skip", "step", "jump" and "autoeval" documentation
9+
* Guard against invalid frame indexing in backtrace
10+
* Suggest import when a function is not found in getting a location
11+
* Improve "info frame", for example opcode, add opcode source line
12+
* Allow breakpoints in a not-frozen module
13+
* Improve print_location handling via deparsing (in older Python versions*
14+
* Tolerate missing keys in settings lookup.
15+
* Temporary file name is now based on some of the deparsed text (when we can deparse)
16+
117
1.3.0 2024-11-13
218
================
319

@@ -258,7 +274,7 @@ Largely administrative changes
258274
0.8.3 2018-01-21
259275
================
260276

261-
User incompatibilty alert!
277+
User incompatibility alert!
262278

263279
We have redone location, breakpoint, and list-range parsing.
264280

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
|CircleCI| |Pypi Installs| |license| |docs| |Supported Python Versions|
1+
|CircleCI| |PyPI Installs| |license| |docs| |Supported Python Versions|
22

33
|packagestatus|
44

@@ -355,7 +355,8 @@ See Also
355355
.. _install: https://python3-trepan.readthedocs.org/en/latest/install.html
356356
.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/trepan3k.svg
357357
:target: https://pypi.python.org/pypi/trepan3k/
358-
.. |Pypi Installs| image:: https://pepy.tech/badge/trepan3k
358+
.. |PyPI Installs| image:: https://img.shields.io/pypi/dm/trepan3k
359+
:alt: PyPI - Downloads
359360
.. |packagestatus| image:: https://repology.org/badge/vertical-allrepos/python:trepan3k.svg
360361
:target: https://repology.org/project/python:trepan3k/versions
361362
.. |docs| image:: https://readthedocs.org/projects/python3-trepan/badge/?version=latest

trepan/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# debugger version number.
66

77
# fmt: off
8-
__version__="1.3.0" # noqa
8+
__version__="1.3.1" # noqa

0 commit comments

Comments
 (0)