Skip to content

Commit fe54643

Browse files
committed
Bump version
1 parent 00f3322 commit fe54643

File tree

13 files changed

+37
-24
lines changed

13 files changed

+37
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ version = "0.0.1"
7979
edition = "2021"
8080

8181
[dependencies]
82-
lief = "0.17.0"
82+
lief = "0.17.1"
8383
```
8484

8585
## Python
@@ -102,7 +102,7 @@ pip install [--user] --force-reinstall --index-url https://lief.s3-website.fr-pa
102102
- **Nightly**:
103103
* SDK: https://lief.s3-website.fr-par.scw.cloud/latest/sdk
104104
* Python Wheels: https://lief.s3-website.fr-par.scw.cloud/latest/lief
105-
- **v0.17.0**: https://github.com/lief-project/LIEF/releases/tag/0.17.0
105+
- **v0.17.1**: https://github.com/lief-project/LIEF/releases/tag/0.17.1
106106

107107
Here are guides to install or integrate LIEF:
108108

@@ -220,7 +220,7 @@ Romain Thomas ([@rh0main](https://www.romainthomas.fr/)) - Formerly at [Quarksla
220220

221221
### License
222222

223-
LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.17.0/LICENSE).
223+
LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.17.1/LICENSE).
224224

225225
### Bibtex
226226

api/rust/cargo/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 <[email protected]>"]
33
license = "Apache-2.0"
44
description = "Official Rust bindings for LIEF."
55
readme = "README.md"
6-
version = "0.17.0"
6+
version = "0.17.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.17.0"
11+
lief = "0.17.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 = { git = "https://github.com/romainthomas/autocxx.git", branch = "0.26.0", version="0.26.0" }
1212

1313
[build-dependencies]
14-
lief-build = { version="0.17.0", path = "../lief-build" }
14+
lief-build = { version="0.17.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.17.0", path = "../lief-ffi" }
25+
lief-ffi = { version = "0.17.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.17.0
29+
//! lief = 0.17.1
3030
//! ```
3131
//!
3232
//! ```rust

api/rust/examples/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/sphinx/changelog.rst

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

6+
0.17.1 - October 25th, 2025
7+
---------------------------
8+
9+
:ELF:
10+
11+
* Fix :issue:`1251`
12+
13+
:Compilation:
14+
15+
* Fix missing visibility (:pr:`1254`)
16+
* Fix incorrect paging computations that occurred when only a subset of formats was enabled.
17+
* Fix include issue with the COFF format
18+
619
0.17.0 - September 14th, 2025
720
-----------------------------
821

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.17.0"
57+
lief = "0.17.1"
5858
5959
You can find more details in the :ref:`Rust API section <lief_rust_bindings>`
6060

0 commit comments

Comments
 (0)