From bcc738aa74f12a5a794d928c921314467964382a Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Sun, 9 Jun 2024 23:12:38 +0200 Subject: [PATCH] release 0.8.0 --- Cargo.lock | 6 +++--- boreal-cli/Cargo.toml | 4 ++-- boreal-parser/Cargo.toml | 2 +- boreal/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d427b34f..4b18094c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ dependencies = [ [[package]] name = "boreal" -version = "0.7.0" +version = "0.8.0" dependencies = [ "aho-corasick", "base64", @@ -170,7 +170,7 @@ dependencies = [ [[package]] name = "boreal-cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "assert_cmd", "boreal", @@ -185,7 +185,7 @@ dependencies = [ [[package]] name = "boreal-parser" -version = "0.5.0" +version = "0.6.0" dependencies = [ "codespan-reporting", "nom", diff --git a/boreal-cli/Cargo.toml b/boreal-cli/Cargo.toml index f97df900..6d5ff1f4 100644 --- a/boreal-cli/Cargo.toml +++ b/boreal-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal-cli" -version = "0.7.0" +version = "0.8.0" description = "CLI utility to run boreal, a YARA rules engine" repository = "https://github.com/vthib/boreal" readme = "README.md" @@ -27,7 +27,7 @@ memmap = ["boreal/memmap"] profiling = ["boreal/profiling"] [dependencies] -boreal = { path = "../boreal", version = "0.7.0" } +boreal = { path = "../boreal", version = "0.8.0" } # CLI arguments handling clap = { version = "4.5", features = ["cargo"] } diff --git a/boreal-parser/Cargo.toml b/boreal-parser/Cargo.toml index 18f6a812..bd8aac8a 100644 --- a/boreal-parser/Cargo.toml +++ b/boreal-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal-parser" -version = "0.5.0" +version = "0.6.0" description = "A parser library for YARA files, intended for use with the boreal library" repository = "https://github.com/vthib/boreal" readme = "README.md" diff --git a/boreal/Cargo.toml b/boreal/Cargo.toml index a64abef7..a1b330a0 100644 --- a/boreal/Cargo.toml +++ b/boreal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal" -version = "0.7.0" +version = "0.8.0" description = "A library to evaluate YARA rules, used to scan bytes for textual and binary pattern" repository = "https://github.com/vthib/boreal" readme = "README.md" @@ -48,7 +48,7 @@ process = ["dep:libc", "dep:windows-sys", "dep:mach2"] profiling = [] [dependencies] -boreal-parser = { path = "../boreal-parser", version = "0.5.0" } +boreal-parser = { path = "../boreal-parser", version = "0.6.0" } # Proper error reporting on compilation codespan-reporting = "0.11"