Skip to content

Commit f4d6835

Browse files
committed
Bump version
1 parent 03f234c commit f4d6835

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ elseif(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
3535
else()
3636
set(LIEF_VERSION_MAJOR "0")
3737
set(LIEF_VERSION_MINOR "15")
38-
set(LIEF_VERSION_PATCH "0")
38+
set(LIEF_VERSION_PATCH "1")
3939
endif()
4040

4141
# LIEF Project

api/rust/cargo/Cargo.toml

+1-1
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.15.0"
6+
version = "0.15.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

+1-1
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.15.0"
11+
lief = "0.15.1"
1212
```
1313

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ cxx = { version = "1.0.117", features = [ "c++20" ] }
1111
autocxx = "0.26"
1212

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

api/rust/cargo/lief/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ bitflags = "2.4"
2121
num-traits = "0.2"
2222
num-derive = "0.4"
2323
num-bigint = "0.4"
24-
lief-ffi = { version = "0.15.0", path = "../lief-ffi" }
24+
lief-ffi = { version = "0.15.1", path = "../lief-ffi" }

0 commit comments

Comments
 (0)