Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Feb 1, 2025
1 parent c66a84c commit 7e61aa2
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ version = "0.0.1"
edition = "2021"

[dependencies]
lief = "0.16.2"
lief = "0.16.3"
```

## Python
Expand All @@ -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
Expand All @@ -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:

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion api/rust/cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Romain Thomas <me@romainthomas.fr>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion api/rust/cargo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion api/rust/cargo/lief-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion api/rust/cargo/lief/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion api/rust/cargo/lief/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/sphinx/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
:fa:`solid fa-code-compare` Changelog
=====================================

0.16.3 - TBD
------------
0.16.3 - February 1st, 2025
---------------------------

:ELF:

Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <lief_rust_bindings>`

Expand Down
4 changes: 2 additions & 2 deletions doc/sphinx/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ straightforward:

.. code-block:: text
lief==0.16.2
lief==0.16.3
.. tab:: :fa:`regular fa-file-code` C++

Expand Down Expand Up @@ -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 </blog/>`_ post among those:

Expand Down

0 comments on commit 7e61aa2

Please sign in to comment.