diff --git a/CMakeLists.txt b/CMakeLists.txt index b218b6963..4be801c0e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ elseif(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" else() set(LIEF_VERSION_MAJOR "0") set(LIEF_VERSION_MINOR "16") - set(LIEF_VERSION_PATCH "1") + set(LIEF_VERSION_PATCH "3") endif() if (DEFINED ENV{LIEF_COMMIT}) diff --git a/README.md b/README.md index c56bc5e04..87c25f1d9 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ version = "0.0.1" edition = "2021" [dependencies] -lief = "0.16.2" +lief = "0.16.3" ``` ## Python @@ -134,7 +134,7 @@ pip install lief To install nightly build: ```console -pip install [--user] --force-reinstall --index-url https://lief.s3-website.fr-par.scw.cloud/latest lief==0.16.0.dev0 +pip install [--user] --force-reinstall --index-url https://lief.s3-website.fr-par.scw.cloud/latest lief==0.17.0.dev0 ``` ### Packages @@ -143,7 +143,7 @@ pip install [--user] --force-reinstall --index-url https://lief.s3-website.fr-pa - **Nightly**: * SDK: https://lief.s3-website.fr-par.scw.cloud/latest/sdk * Python Wheels: https://lief.s3-website.fr-par.scw.cloud/latest/lief -- **v0.16.0**: https://github.com/lief-project/LIEF/releases/tag/0.16.0 +- **v0.16.3**: https://github.com/lief-project/LIEF/releases/tag/0.16.3 Here are guides to install or integrate LIEF: @@ -261,7 +261,7 @@ Romain Thomas ([@rh0main](https://www.romainthomas.fr/)) - [Quarkslab](https://w ### License -LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.16.0/LICENSE). +LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.16.3/LICENSE). ### Bibtex diff --git a/api/rust/cargo/Cargo.toml b/api/rust/cargo/Cargo.toml index e4c01c0d3..167aebdcd 100644 --- a/api/rust/cargo/Cargo.toml +++ b/api/rust/cargo/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Romain Thomas "] license = "Apache-2.0" description = "Official Rust bindings for LIEF." readme = "README.md" -version = "0.16.2" +version = "0.16.3" homepage = "https://lief.re" keywords = ["ELF", "PE", "Mach-O", "reverse-engineering"] repository = "https://github.com/lief-project/LIEF" diff --git a/api/rust/cargo/README.md b/api/rust/cargo/README.md index 3077bcf2f..5deb0fddb 100644 --- a/api/rust/cargo/README.md +++ b/api/rust/cargo/README.md @@ -8,7 +8,7 @@ These are the offical rust bindings for LIEF. ```toml [dependencies] -lief = "0.16.2" +lief = "0.16.3" ``` The bindings require Rust edition 2021 and `rustc >= 1.74.0` diff --git a/api/rust/cargo/lief-ffi/Cargo.toml b/api/rust/cargo/lief-ffi/Cargo.toml index 15cb71b53..f2a2e672a 100644 --- a/api/rust/cargo/lief-ffi/Cargo.toml +++ b/api/rust/cargo/lief-ffi/Cargo.toml @@ -11,7 +11,7 @@ cxx = { version = "1.0.117", features = [ "c++17" ] } autocxx = "0.26" [build-dependencies] -lief-build = { version="0.16.2", path = "../lief-build" } +lief-build = { version="0.16.3", path = "../lief-build" } miette = { version="5.10", features = [ "fancy" ] } [features] diff --git a/api/rust/cargo/lief/Cargo.toml b/api/rust/cargo/lief/Cargo.toml index 92fd5b9b4..d303cbf98 100644 --- a/api/rust/cargo/lief/Cargo.toml +++ b/api/rust/cargo/lief/Cargo.toml @@ -22,7 +22,7 @@ num-traits = "0.2" num-derive = "0.4" num-bigint = "0.4" tempfile = "3.14.0" -lief-ffi = { version = "0.16.2", path = "../lief-ffi" } +lief-ffi = { version = "0.16.3", path = "../lief-ffi" } [features] default = ["rustls-tls"] diff --git a/api/rust/cargo/lief/src/lib.rs b/api/rust/cargo/lief/src/lib.rs index 94beffa9e..a0469d532 100644 --- a/api/rust/cargo/lief/src/lib.rs +++ b/api/rust/cargo/lief/src/lib.rs @@ -26,7 +26,7 @@ //! # For nightly //! lief = { git = "https://github.com/lief-project/LIEF", branch = "main" } //! # For releases -//! lief = 0.16.2 +//! lief = 0.16.3 //! ``` //! //! ```rust diff --git a/doc/sphinx/changelog.rst b/doc/sphinx/changelog.rst index 0aa871bf2..a7b492fcd 100644 --- a/doc/sphinx/changelog.rst +++ b/doc/sphinx/changelog.rst @@ -3,8 +3,8 @@ :fa:`solid fa-code-compare` Changelog ===================================== -0.16.3 - TBD ------------- +0.16.3 - February 1st, 2025 +--------------------------- :ELF: diff --git a/doc/sphinx/installation.rst b/doc/sphinx/installation.rst index 331d3f2b3..261bed315 100644 --- a/doc/sphinx/installation.rst +++ b/doc/sphinx/installation.rst @@ -54,7 +54,7 @@ One can add LIEF as a dependency of a Rust project as follows: # For a tagged release [dependencies] - lief = "0.16.2" + lief = "0.16.3" You can find more details in the :ref:`Rust API section ` diff --git a/doc/sphinx/intro.rst b/doc/sphinx/intro.rst index cce51202a..9ce358b5e 100644 --- a/doc/sphinx/intro.rst +++ b/doc/sphinx/intro.rst @@ -116,7 +116,7 @@ straightforward: .. code-block:: text - lief==0.16.2 + lief==0.16.3 .. tab:: :fa:`regular fa-file-code` C++ @@ -150,7 +150,7 @@ straightforward: # For a tagged release [dependencies] - lief = "0.16.2" + lief = "0.16.3" You can also find additional content in the `LIEF's blog `_ post among those: