Skip to content

Commit c983f1c

Browse files
committed
Release 4.13.0beta0
1 parent eb7e2c3 commit c983f1c

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

CHANGELOG.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th
99

1010
| Version | Branch | Release Date |
1111
| ---------------- | -------- | ---------------------- |
12-
| [4.13.0](#4130-dev) | `dev` |
13-
| [4.12.0](#4120-beta) | `beta` |
14-
| [4.11.1](#4111-stable) | `stable` | Nov 14, 2023
12+
| [4.14.0](#4140-dev) | `dev` |
13+
| [4.13.0](#4130-beta) | `beta` |
14+
| [4.12.0](#4120-stable) | `stable` | Feb 22, 2024
15+
| [4.11.1](#4111) | | Nov 14, 2023
1516
| [4.11.0](#4110) | | Sep 15, 2023
1617
| [4.10.0](#4100) | | May 21, 2023
1718
| [4.9.0](#490) | | Dec 29, 2022
@@ -68,7 +69,11 @@ The table below shows which release corresponds to each branch, and what date th
6869
| [3.0.0](#300) | | Aug 20, 2016
6970
| [2.2.0](#220) | | Jan 5, 2015
7071

71-
## 4.13.0 (`dev`)
72+
## 4.14.0 (`dev`)
73+
74+
75+
76+
## 4.13.0 (`beta`)
7277

7378
- [#2242][2242] Term module revamp: activating special handling of terminal only when necessary
7479
- [#2277][2277] elf: Resolve more relocations into GOT entries
@@ -125,7 +130,7 @@ The table below shows which release corresponds to each branch, and what date th
125130
[2347]: https://github.com/Gallopsled/pwntools/pull/2347
126131
[2233]: https://github.com/Gallopsled/pwntools/pull/2233
127132

128-
## 4.12.0 (`beta`)
133+
## 4.12.0 (`stable`)
129134

130135
- [#2202][2202] Fix `remote` and `listen` in sagemath
131136
- [#2117][2117] Add -p (--prefix) and -s (--separator) arguments to `hex` command
@@ -134,6 +139,8 @@ The table below shows which release corresponds to each branch, and what date th
134139
- [#2212][2212] Add `--libc libc.so` argument to `pwn template` command
135140
- [#2257][2257] Allow creation of custom templates for `pwn template` command
136141
- [#2225][2225] Allow empty argv in ssh.process()
142+
- [#2349][2349] Fix term.readline omitting a trailing \n
143+
- [#2352][2352] add `RETURN_CONST` as an allowed `_const_code` in safeeval
137144

138145
[2202]: https://github.com/Gallopsled/pwntools/pull/2202
139146
[2117]: https://github.com/Gallopsled/pwntools/pull/2117
@@ -142,15 +149,10 @@ The table below shows which release corresponds to each branch, and what date th
142149
[2212]: https://github.com/Gallopsled/pwntools/pull/2212
143150
[2257]: https://github.com/Gallopsled/pwntools/pull/2257
144151
[2225]: https://github.com/Gallopsled/pwntools/pull/2225
145-
146-
## 4.11.2
147-
- [#2349][2349] Fix term.readline omitting a trailing \n
148-
- [#2352][2352] add `RETURN_CONST` as an allowed `_const_code` in safeeval
149-
150152
[2349]: https://github.com/Gallopsled/pwntools/pull/2349
151153
[2352]: https://github.com/Gallopsled/pwntools/pull/2352
152154

153-
## 4.11.1 (`stable`)
155+
## 4.11.1
154156

155157
- [#2271][2271] FIX: Generated shebang with path to python invalid if path contains spaces
156158
- [#2272][2272] Fix `tube.clean_and_log` not logging buffered data
@@ -1131,4 +1133,4 @@ are mentioned here.
11311133
- Added a lots of shellcodes
11321134
- Stuff we forgot
11331135
- Lots of documentation fixes
1134-
- Lots of bugfixes
1136+
- Lots of bugfixes

pwnlib/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.13.0dev'
1+
__version__ = '4.13.0beta0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
sys.exit(-1)
6464

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

0 commit comments

Comments
 (0)