diff --git a/README.md b/README.md index d2cfa90aa..a0af8991b 100644 --- a/README.md +++ b/README.md @@ -153,53 +153,53 @@ Download the portable version from the [Pwndbg releases page](https://github.com Make sure to select the correct file for your operating system and architecture: - **Linux (x86_64, armv7l, aarch64, riscv64):** - - `pwndbg_2024.08.29_amd64.tar.xz` (x86_64 for GDB) - - `pwndbg_2024.08.29_armv7.tar.xz` (armv7l for GDB) - - `pwndbg_2024.08.29_arm64.tar.xz` (aarch64 for GDB) - - `pwndbg_2024.08.29_riscv64.tar.xz` (riscv64 for GDB) - - `pwndbg-lldb_2024.08.29_amd64.tar.xz` (x86_64 for LLDB) - - `pwndbg-lldb_2024.08.29_armv7.tar.xz` (armv7l for LLDB) - - `pwndbg-lldb_2024.08.29_arm64.tar.xz` (aarch64 for LLDB) - - `pwndbg-lldb_2024.08.29_riscv64.tar.xz` (riscv64 for LLDB) + - `pwndbg_2025.01.20_amd64.tar.xz` (x86_64 for GDB) + - `pwndbg_2025.01.20_armv7.tar.xz` (armv7l for GDB) + - `pwndbg_2025.01.20_arm64.tar.xz` (aarch64 for GDB) + - `pwndbg_2025.01.20_riscv64.tar.xz` (riscv64 for GDB) + - `pwndbg-lldb_2025.01.20_amd64.tar.xz` (x86_64 for LLDB) + - `pwndbg-lldb_2025.01.20_armv7.tar.xz` (armv7l for LLDB) + - `pwndbg-lldb_2025.01.20_arm64.tar.xz` (aarch64 for LLDB) + - `pwndbg-lldb_2025.01.20_riscv64.tar.xz` (riscv64 for LLDB) - **macOS (amd64, arm64):** - - `pwndbg-lldb_2024.08.29_macos_amd64.tar.xz` (macOS, Intel/AMD CPUs, for LLDB) - - `pwndbg-lldb_2024.08.29_macos_arm64.tar.xz` (macOS, Apple Silicon/M1/M2/M*, for LLDB) - - `pwndbg_2024.08.29_macos_amd64.tar.xz` (macOS, Intel/AMD CPUs for GDB) - - `pwndbg_2024.08.29_macos_amd64.tar.xz` (macOS, Apple Silicon/M1/M2/M*, for GDB via **Rosseta emulation**) + - `pwndbg-lldb_2025.01.20_macos_amd64.tar.xz` (macOS, Intel/AMD CPUs, for LLDB) + - `pwndbg-lldb_2025.01.20_macos_arm64.tar.xz` (macOS, Apple Silicon/M1/M2/M*, for LLDB) + - `pwndbg_2025.01.20_macos_amd64.tar.xz` (macOS, Intel/AMD CPUs for GDB) + - `pwndbg_2025.01.20_macos_amd64.tar.xz` (macOS, Apple Silicon/M1/M2/M*, for GDB via **Rosseta emulation**) #### Instructions: - Portable tarball: ```shell -tar -v -xf ./pwndbg_2024.08.29_amd64.tar.xz +tar -v -xf ./pwndbg_2025.01.20_amd64.tar.xz # ./pwndbg/bin/pwndbg # or ./pwndbg/bin/pwndbg-lldb ``` - Installation on RPM-based Systems (CentOS/Alma/Rocky/RHEL): ```shell -dnf install ./pwndbg-2024.08.29.x86_64.rpm +dnf install ./pwndbg-2025.01.20.x86_64.rpm # pwndbg # and/or pwndbg-lldb ``` - Installation on DEB-based Systems (Debian/Ubuntu/Kali): ```shell -apt install ./pwndbg_2024.08.29_amd64.deb +apt install ./pwndbg_2025.01.20_amd64.deb # pwndbg # and/or pwndbg-lldb ``` - Installation on Alpine: ```shell -apk add --allow-untrusted ./pwndbg_2024.08.29_x86_64.apk +apk add --allow-untrusted ./pwndbg_2025.01.20_x86_64.apk # pwndbg # and/or pwndbg-lldb ``` - Installation on Arch Linux: ```shell -pacman -U ./pwndbg-2024.08.29-1-x86_64.pkg.tar.zst +pacman -U ./pwndbg-2025.01.20-1-x86_64.pkg.tar.zst # pwndbg # and/or pwndbg-lldb ``` diff --git a/pwndbg/lib/version.py b/pwndbg/lib/version.py index 8e9ea0195..ee8bda628 100644 --- a/pwndbg/lib/version.py +++ b/pwndbg/lib/version.py @@ -27,7 +27,7 @@ def build_id() -> str: return "" -__version__ = "2024.08.29" +__version__ = "2025.01.20" b_id = build_id() diff --git a/pyproject.toml b/pyproject.toml index 3031d904d..50111dd14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -149,7 +149,7 @@ omit = ["ida_script.py", "tests/*"] [tool.poetry] name = "pwndbg" description = "Exploit Development and Reverse Engineering with GDB Made Easy" -version = "2024.08.29" +version = "2025.01.20" authors = ["Dominik 'disconnect3d' Czarnota "] readme = "README.md" packages = [{ include = "pwndbg" }]