Skip to content

Commit 78dd777

Browse files
committed
Release 4.13.1
1 parent 824d67d commit 78dd777

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The table below shows which release corresponds to each branch, and what date th
1111
| ---------------- | -------- | ---------------------- |
1212
| [4.15.0](#4150-dev) | `dev` |
1313
| [4.14.0](#4140-beta) | `beta` |
14-
| [4.13.0](#4130-stable) | `stable` | Aug 12, 2024
14+
| [4.13.1](#4131-stable) | `stable` | Sep 29, 2024
15+
| [4.13.0](#4130) | | Aug 12, 2024
1516
| [4.12.0](#4120) | | Feb 22, 2024
1617
| [4.11.1](#4111) | | Nov 14, 2023
1718
| [4.11.0](#4110) | | Sep 15, 2023
@@ -72,7 +73,17 @@ The table below shows which release corresponds to each branch, and what date th
7273

7374
## 4.15.0 (`dev`)
7475

76+
- [#2471][2471] Properly close spawned kitty window
77+
- [#2358][2358] Cache output of `asm()`
78+
- [#2457][2457] Catch exception of non-ELF files in checksec.
79+
- [#2444][2444] Add `ELF.close()` to release resources
80+
- [#2413][2413] libcdb: improve the search speed of `search_by_symbol_offsets` in local libc-database
7581

82+
[2471]: https://github.com/Gallopsled/pwntools/pull/2471
83+
[2358]: https://github.com/Gallopsled/pwntools/pull/2358
84+
[2457]: https://github.com/Gallopsled/pwntools/pull/2457
85+
[2444]: https://github.com/Gallopsled/pwntools/pull/2444
86+
[2413]: https://github.com/Gallopsled/pwntools/pull/2413
7687

7788
## 4.14.0 (`beta`)
7889

@@ -118,7 +129,7 @@ The table below shows which release corresponds to each branch, and what date th
118129
[2435]: https://github.com/Gallopsled/pwntools/pull/2435
119130
[2437]: https://github.com/Gallopsled/pwntools/pull/2437
120131

121-
## 4.13.1
132+
## 4.13.1 (`stable`)
122133

123134
- [#2445][2445] Fix parsing the PLT on Windows
124135
- [#2466][2466] Fix PLT emulation with Unicorn 2.1.0
@@ -131,7 +142,7 @@ The table below shows which release corresponds to each branch, and what date th
131142
[2467]: https://github.com/Gallopsled/pwntools/pull/2467
132143
[2469]: https://github.com/Gallopsled/pwntools/pull/2469
133144

134-
## 4.13.0 (`stable`)
145+
## 4.13.0
135146

136147
- [#2242][2242] Term module revamp: activating special handling of terminal only when necessary
137148
- [#2277][2277] elf: Resolve more relocations into GOT entries

pwnlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.13.0'
1+
__version__ = '4.13.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
sys.exit(-1)
6464

6565
setup(
66-
version = '4.13.0',
66+
version = '4.13.1',
6767
data_files = [('pwntools-doc',
6868
glob.glob('*.md') + glob.glob('*.txt')),
6969
],

0 commit comments

Comments
 (0)