Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Dec 26, 2024
1 parent 0c39baf commit 564b5e3
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 12 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 "0")
set(LIEF_VERSION_PATCH "1")
endif()

if (DEFINED ENV{LIEF_COMMIT})
Expand Down
2 changes: 1 addition & 1 deletion 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.0"
lief = "0.16.1"
```

## Python
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 <[email protected]>"]
license = "Apache-2.0"
description = "Official Rust bindings for LIEF."
readme = "README.md"
version = "0.16.0"
version = "0.16.1"
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.0"
lief = "0.16.1"
```

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.0", path = "../lief-build" }
lief-build = { version="0.16.1", 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.0", path = "../lief-ffi" }
lief-ffi = { version = "0.16.1", 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.0
//! lief = 0.16.1
//! ```
//!
//! ```rust
Expand Down
15 changes: 13 additions & 2 deletions doc/sphinx/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,24 @@
:fa:`solid fa-code-compare` Changelog
=====================================

0.16.X - TBD
------------
0.16.1 - December 26th, 2024
----------------------------

:MachO:

* Various fixes from :github_user:`DzenIsRich` & :github_user:`peledins-zimperium`
Thanks to them, Mach-O modification is more reliable.

* Fix issue when building with ``-DLIEF_MACHO=ON`` (see: :issue:`1138`)

:Rust:

* Fix min-rustc version issue (see: :commit:`75a27f0e`)

:Compilation:

* Fix missing ``LIEF_API`` visibility (:commit:`e01f92a0`, :pr:`1140`)


0.16.0 - December 10th, 2024
----------------------------
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.0"
lief = "0.16.1"
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.0
lief==0.16.1
.. tab:: :fa:`regular fa-file-code` C++

Expand Down Expand Up @@ -150,7 +150,7 @@ straightforward:
# For a tagged release
[dependencies]
lief = "0.16.0"
lief = "0.16.1"
You can also find additional content in the `LIEF's blog </blog/>`_ post among those:

Expand Down

0 comments on commit 564b5e3

Please sign in to comment.