Skip to content

Commit 564b5e3

Browse files
committed
Update changelog
1 parent 0c39baf commit 564b5e3

File tree

10 files changed

+23
-12
lines changed

10 files changed

+23
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ elseif(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
3737
else()
3838
set(LIEF_VERSION_MAJOR "0")
3939
set(LIEF_VERSION_MINOR "16")
40-
set(LIEF_VERSION_PATCH "0")
40+
set(LIEF_VERSION_PATCH "1")
4141
endif()
4242

4343
if (DEFINED ENV{LIEF_COMMIT})

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ version = "0.0.1"
120120
edition = "2021"
121121

122122
[dependencies]
123-
lief = "0.16.0"
123+
lief = "0.16.1"
124124
```
125125

126126
## Python

api/rust/cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = ["Romain Thomas <me@romainthomas.fr>"]
33
license = "Apache-2.0"
44
description = "Official Rust bindings for LIEF."
55
readme = "README.md"
6-
version = "0.16.0"
6+
version = "0.16.1"
77
homepage = "https://lief.re"
88
keywords = ["ELF", "PE", "Mach-O", "reverse-engineering"]
99
repository = "https://github.com/lief-project/LIEF"

api/rust/cargo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ These are the offical rust bindings for LIEF.
88

99
```toml
1010
[dependencies]
11-
lief = "0.16.0"
11+
lief = "0.16.1"
1212
```
1313

1414
The bindings require Rust edition 2021 and `rustc >= 1.74.0`

api/rust/cargo/lief-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cxx = { version = "1.0.117", features = [ "c++17" ] }
1111
autocxx = "0.26"
1212

1313
[build-dependencies]
14-
lief-build = { version="0.16.0", path = "../lief-build" }
14+
lief-build = { version="0.16.1", path = "../lief-build" }
1515
miette = { version="5.10", features = [ "fancy" ] }
1616

1717
[features]

api/rust/cargo/lief/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ num-traits = "0.2"
2222
num-derive = "0.4"
2323
num-bigint = "0.4"
2424
tempfile = "3.14.0"
25-
lief-ffi = { version = "0.16.0", path = "../lief-ffi" }
25+
lief-ffi = { version = "0.16.1", path = "../lief-ffi" }
2626

2727
[features]
2828
default = ["rustls-tls"]

api/rust/cargo/lief/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
//! # For nightly
2727
//! lief = { git = "https://github.com/lief-project/LIEF", branch = "main" }
2828
//! # For releases
29-
//! lief = 0.16.0
29+
//! lief = 0.16.1
3030
//! ```
3131
//!
3232
//! ```rust

doc/sphinx/changelog.rst

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,24 @@
33
:fa:`solid fa-code-compare` Changelog
44
=====================================
55

6-
0.16.X - TBD
7-
------------
6+
0.16.1 - December 26th, 2024
7+
----------------------------
88

99
:MachO:
1010

11+
* Various fixes from :github_user:`DzenIsRich` & :github_user:`peledins-zimperium`
12+
Thanks to them, Mach-O modification is more reliable.
13+
1114
* Fix issue when building with ``-DLIEF_MACHO=ON`` (see: :issue:`1138`)
1215

16+
:Rust:
17+
18+
* Fix min-rustc version issue (see: :commit:`75a27f0e`)
19+
20+
:Compilation:
21+
22+
* Fix missing ``LIEF_API`` visibility (:commit:`e01f92a0`, :pr:`1140`)
23+
1324

1425
0.16.0 - December 10th, 2024
1526
----------------------------

doc/sphinx/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ One can add LIEF as a dependency of a Rust project as follows:
5454
5555
# For a tagged release
5656
[dependencies]
57-
lief = "0.16.0"
57+
lief = "0.16.1"
5858
5959
You can find more details in the :ref:`Rust API section <lief_rust_bindings>`
6060

doc/sphinx/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ straightforward:
116116

117117
.. code-block:: text
118118
119-
lief==0.16.0
119+
lief==0.16.1
120120
121121
.. tab:: :fa:`regular fa-file-code` C++
122122

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

0 commit comments

Comments
 (0)