Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Jul 21, 2024
1 parent 339a08f commit ad4e824
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ elseif(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
include(LIEFGit)
else()
set(LIEF_VERSION_MAJOR "0")
set(LIEF_VERSION_MINOR "15")
set(LIEF_VERSION_MINOR "16")
set(LIEF_VERSION_PATCH "0")
endif()

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ pip install lief
To install nightly build:

```console
pip install [--user] --index-url https://lief.s3-website.fr-par.scw.cloud/latest lief==0.15.0.dev0
pip install [--user] --index-url https://lief.s3-website.fr-par.scw.cloud/latest lief==0.16.0.dev0
```

### Packages

- **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.14.1**: https://github.com/lief-project/LIEF/releases/tag/0.14.1
- **v0.15.0**: https://github.com/lief-project/LIEF/releases/tag/0.15.0

Here are guides to install or integrate LIEF:

Expand Down Expand Up @@ -234,7 +234,7 @@ Romain Thomas ([@rh0main](https://twitter.com/rh0main)) - [Quarkslab](https://ww

### License

LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.14.1/LICENSE).
LIEF is provided under the [Apache 2.0 license](https://github.com/lief-project/LIEF/blob/0.15.0/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 <[email protected]>"]
license = "Apache-2.0"
description = "Official Rust bindings for LIEF."
readme = "README.md"
version = "0.15.0"
version = "0.16.0"
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.15.0"
lief = "0.16.0"
```

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,5 +11,5 @@ cxx = { version = "1.0.117", features = [ "c++20" ] }
autocxx = "0.26"

[build-dependencies]
lief-build = { version="0.15.0", path = "../lief-build" }
lief-build = { version="0.16.0", path = "../lief-build" }
miette = { version="5.10", features = [ "fancy" ] }
2 changes: 1 addition & 1 deletion api/rust/cargo/lief/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ bitflags = "2.4"
num-traits = "0.2"
num-derive = "0.4"
num-bigint = "0.4"
lief-ffi = { version = "0.15.0", path = "../lief-ffi" }
lief-ffi = { version = "0.16.0", path = "../lief-ffi" }

0 comments on commit ad4e824

Please sign in to comment.