diff --git a/CHANGELOG.md b/CHANGELOG.md index 30f8274..3ea32d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [0.29.0](https://github.com/Hugal31/yara-rust/compare/v0.28.0...v0.29.0) (2024-09-26) + +### Features + +* Change vendored and bundled Yara version to 4.5.2. + +### ⚠ BREAKING CHANGES + +* The `bunlded-4_5_1` feature as removed in favor of `bunlded-4_5_2`. + ## [0.28.0](https://github.com/Hugal31/yara-rust/compare/v0.27.0...v0.28.0) (2024-06-03) ### Features diff --git a/Cargo.toml b/Cargo.toml index 45f94b5..163eb20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["yara-sys"] [package] name = "yara" -version = "0.28.0" +version = "0.29.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Rust bindings for VirusTotal/yara" @@ -43,9 +43,9 @@ tempfile = "3.9" [dependencies.yara-sys] path = "yara-sys" -version = "0.28.0" +version = "0.29.0" default-features = false [package.metadata.docs.rs] no-default-features = true -features = ["bundled-4_5_1"] +features = ["bundled-4_5_2"] diff --git a/yara-sys/Cargo.toml b/yara-sys/Cargo.toml index ad41bf3..ec21050 100644 --- a/yara-sys/Cargo.toml +++ b/yara-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yara-sys" -version = "0.28.0" +version = "0.29.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Native bindings to the libyara library"