From 30a0cdcbbed0f7bfcc058f4adab9fc50cc45da47 Mon Sep 17 00:00:00 2001 From: Hugo Laloge Date: Mon, 30 Oct 2023 09:48:49 +0100 Subject: [PATCH] chore(release): 0.22.0 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 4 ++-- yara-sys/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bd53db..f470ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ 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.22.0](https://github.com/Hugal31/yara-rust/compare/v0.21.0...v0.22.0) (2023-10-30) + + +### Features + +* add ScanFlags::PROCESS_MEMORY + ([8538674](https://github.com/Hugal31/yara-rust/commit/8538674d7142ec51f2e403571ee07119f62b28c4)) + + +### Bug Fixes + +* fix UB in the scan mem blocks API + ([801ab5f](https://github.com/Hugal31/yara-rust/commit/801ab5f1360ae732bdcacc91a2742c0e8da7ea67)) + ## [0.21.0](https://github.com/Hugal31/yara-rust/compare/v0.20.0...v0.21.0) (2023-09-07) diff --git a/Cargo.toml b/Cargo.toml index 96000db..cbf461f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["yara-sys"] [package] name = "yara" -version = "0.21.0" +version = "0.22.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Rust bindings for VirusTotal/yara" @@ -43,7 +43,7 @@ tempfile = "3.5" [dependencies.yara-sys] path = "yara-sys" -version = "0.21.0" +version = "0.22.0" default-features = false [package.metadata.docs.rs] diff --git a/yara-sys/Cargo.toml b/yara-sys/Cargo.toml index 89bd37d..6ebedc8 100644 --- a/yara-sys/Cargo.toml +++ b/yara-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yara-sys" -version = "0.21.0" +version = "0.22.0" authors = ["Hugo Laloge "] license = "MIT OR Apache-2.0" description = "Native bindings to the libyara library"