Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 1.4.0 release #208

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.4.0
commit = True
message =
Prepare for {new_version} release
Expand Down
19 changes: 19 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ Changelog

.. towncrier release notes start

pystack 1.4.0 (2024-09-11)
--------------------------

Features
~~~~~~~~

- Add support for Python 3.13 (#186)
- Add a new ``--version`` command line flag to show the version of pystack (#203)
- Support debugging free-threading (a.k.a. "nogil") Python 3.13 builds. Note that PyStack can't itself be run with ``python3.13t``, it can only attach to a ``python3.13t`` process or core file from another interpreter. (#206)


Bug Fixes
~~~~~~~~~

- Fix a bug that was causing Python scripts executed directly via shebang to report the shell script as the executable. (#184)
- Heap corruption could cause PyStack to fail to generate a stack when ``--locals`` mode was used. This has been fixed by falling back to a reasonable default when attempting to format the repr of a local variable causes a dereference of an invalid pointer. (#194)
- Fix a crash when analysing processes where the eval loop has a shim frame at the bottom of the stack (#204)


pystack 1.3.0 (2023-11-28)
--------------------------

Expand Down
1 change: 0 additions & 1 deletion news/184.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/186.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/194.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/203.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/204.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/206.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/pystack/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.4.0"
Loading