diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a67560..fb0571d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.27.0](https://github.com/Hugal31/yara-rust/compare/v0.26.0...v0.27.0) (2024-05-06) + +### Features + +* add ability to set module data in scan callback + ([93e802e](https://github.com/Hugal31/yara-rust/commit/93e802e11bc9432f1f99f14b3ecde3e7bf614725)) + ## [0.26.0](https://github.com/Hugal31/yara-rust/compare/v0.25.0...v0.26.0) (2024-02-16) ### Features diff --git a/Cargo.toml b/Cargo.toml index 4ec9235..b4b5728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["yara-sys"] [package] name = "yara" -version = "0.26.0" +version = "0.27.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Rust bindings for VirusTotal/yara" @@ -43,7 +43,7 @@ tempfile = "3.9" [dependencies.yara-sys] path = "yara-sys" -version = "0.25.0" +version = "0.27.0" default-features = false [package.metadata.docs.rs] diff --git a/yara-sys/Cargo.toml b/yara-sys/Cargo.toml index 07806cc..a276f60 100644 --- a/yara-sys/Cargo.toml +++ b/yara-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yara-sys" -version = "0.25.0" +version = "0.27.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Native bindings to the libyara library"