Skip to content

Commit e92cea1

Browse files
committed
Prepare for 1.5.0 release
See changelog for more details. Signed-off-by: Pablo Galindo <[email protected]>
1 parent f17d201 commit e92cea1

File tree

10 files changed

+31
-13
lines changed

10 files changed

+31
-13
lines changed

β€Ž.bumpversion.cfgβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.1
2+
current_version = 1.5.0
33
commit = True
44
message =
55
Prepare for {new_version} release

β€ŽNEWS.rstβ€Ž

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,35 @@ Changelog
88

99
.. towncrier release notes start
1010
11+
pystack 1.5.0 (2025-08-18)
12+
--------------------------
13+
14+
Features
15+
~~~~~~~~
16+
17+
- Add a new ``--native-last`` command line flag to only show the C frames after the last Python frame. (#182)
18+
- Add support for Python 3.14 (#229)
19+
- Support kernels that don't have CONFIG_CROSS_MEMORY_ATTACH set. (#240)
20+
21+
22+
Deprecations and Removals
23+
~~~~~~~~~~~~~~~~~~~~~~~~~
24+
25+
- We no longer provide x86-64 musllinux_1_1 wheels. The manylinux project dropped support for musllinux_1_1 on November 1st, 2024. (#237)
26+
- We no longer provide Python 3.7 wheels. Python 3.7 has been end-of-life since June 2023. (#237)
27+
28+
29+
Bug Fixes
30+
~~~~~~~~~
31+
32+
- Fix incorrect file offset calculation when analyzing ELF files with
33+
non-standard ELF layouts. Previously, pystack would fail to correctly analyze
34+
Python binaries that had non-standard ELF layouts (for example when compiled
35+
with certain linker options). The fix properly accounts for PT_LOAD segment
36+
mappings when calculating file offsets. (#220)
37+
- Improve handling of core files where we cannot determine the executable. (#221)
38+
39+
1140
pystack 1.4.1 (2024-10-04)
1241
--------------------------
1342

β€Žnews/182.feature.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žnews/220.bugfix.rstβ€Ž

Lines changed: 0 additions & 5 deletions
This file was deleted.

β€Žnews/221.bugfix.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žnews/229.feature.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žnews/237.removal.1.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žnews/237.removal.2.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žnews/240.feature.rstβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žsrc/pystack/_version.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.1"
1+
__version__ = "1.5.0"

0 commit comments

Comments
Β (0)