Bump 2025.10.10

pull/3339/head 2025.10.10
Patryk Sondej 2 months ago
parent beb788002a
commit 895e0b384b

@ -38,7 +38,7 @@ if [ -n "$missing" ]; then
exit 1 exit 1
fi fi
VERSION="2025.05.30" VERSION="2025.10.10"
TYPE="" TYPE=""
ROOTLESS=false ROOTLESS=false

@ -25,19 +25,19 @@ When installing with GDB, you may also download a package to install through you
RPM-based Systems (CentOS/Alma/Rocky/RHEL): RPM-based Systems (CentOS/Alma/Rocky/RHEL):
```{.bash .copy} ```{.bash .copy}
dnf install ./pwndbg-2025.05.30.x86_64.rpm dnf install ./pwndbg-2025.10.10.x86_64.rpm
``` ```
DEB-based Systems (Debian/Ubuntu/Kali): DEB-based Systems (Debian/Ubuntu/Kali):
```{.bash .copy} ```{.bash .copy}
apt install ./pwndbg_2025.05.30_amd64.deb apt install ./pwndbg_2025.10.10_amd64.deb
``` ```
Alpine: Alpine:
```{.bash .copy} ```{.bash .copy}
apk add --allow-untrusted ./pwndbg_2025.05.30_x86_64.apk apk add --allow-untrusted ./pwndbg_2025.10.10_x86_64.apk
``` ```
Arch Linux: Arch Linux:
```{.bash .copy} ```{.bash .copy}
pacman -U ./pwndbg-2025.05.30-1-x86_64.pkg.tar.zst pacman -U ./pwndbg-2025.10.10-1-x86_64.pkg.tar.zst
``` ```
### Distro packages ### Distro packages
You may want to install Pwndbg through your distribution's package manager. This installation method is **not officially supported** because we cannot control the versions of the python dependencies Pwndbg uses in this case. Please use any other installation method when reproducing bug reports (portable package is probably simplest in this case). If a bug reproduces with a distro package but not with any of the supported installation methods, please report it to the package maintainer; if the problem cannot be fixed, let us know and we will add it to a list of known issues below. You may want to install Pwndbg through your distribution's package manager. This installation method is **not officially supported** because we cannot control the versions of the python dependencies Pwndbg uses in this case. Please use any other installation method when reproducing bug reports (portable package is probably simplest in this case). If a bug reproduces with a distro package but not with any of the supported installation methods, please report it to the package maintainer; if the problem cannot be fixed, let us know and we will add it to a list of known issues below.

@ -27,7 +27,7 @@ def build_id() -> str:
return "" return ""
__version__ = "2025.05.30" __version__ = "2025.10.10"
b_id = build_id() b_id = build_id()

@ -1,6 +1,6 @@
[project] [project]
name = "pwndbg" name = "pwndbg"
version = "2025.05.30" version = "2025.10.10"
description = "Exploit Development and Reverse Engineering with GDB Made Easy" description = "Exploit Development and Reverse Engineering with GDB Made Easy"
authors = [{ name = "Dominik 'disconnect3d' Czarnota", email = "dominik.b.czarnota+dc@gmail.com" }] authors = [{ name = "Dominik 'disconnect3d' Czarnota", email = "dominik.b.czarnota+dc@gmail.com" }]
requires-python = ">=3.10, <4" requires-python = ">=3.10, <4"

@ -1375,7 +1375,7 @@ wheels = [
[[package]] [[package]]
name = "pwndbg" name = "pwndbg"
version = "2025.5.30" version = "2025.10.10"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "capstone" }, { name = "capstone" },

Loading…
Cancel
Save