From 8dea61cf583e8074f02b68178fd88f3b449f4e60 Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Sun, 12 Feb 2023 21:34:27 +0100 Subject: [PATCH] release 0.2.0 --- CHANGELOG.md | 5 ++++- Cargo.lock | 6 +++--- boreal-cli/Cargo.toml | 4 ++-- boreal-parser/Cargo.toml | 2 +- boreal/Cargo.toml | 4 ++-- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6083850d..0df975e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2023-02-12 + Main changes: - Compilation and evaluation of rules have been hardened, and it is now @@ -72,5 +74,6 @@ Main changes: Initial release. -[unreleased]: https://github.com/vthib/boreal/compare/v1.1.0...HEAD +[unreleased]: https://github.com/vthib/boreal/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/vthib/boreal/releases/tag/v0.2.0 [0.1.0]: https://github.com/vthib/boreal/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index c659366f..17fb9453 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,7 +85,7 @@ dependencies = [ [[package]] name = "boreal" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aho-corasick", "base64", @@ -113,7 +113,7 @@ dependencies = [ [[package]] name = "boreal-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "boreal", "clap 4.0.23", @@ -125,7 +125,7 @@ dependencies = [ [[package]] name = "boreal-parser" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bitflags", "codespan-reporting", diff --git a/boreal-cli/Cargo.toml b/boreal-cli/Cargo.toml index 8ffa539e..b1bf97aa 100644 --- a/boreal-cli/Cargo.toml +++ b/boreal-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal-cli" -version = "0.1.0" +version = "0.2.0" description = "CLI utility to run boreal, a YARA rules engine" repository = "https://github.com/vthib/boreal" readme = "README.md" @@ -17,7 +17,7 @@ path = "src/main.rs" openssl = ["boreal/openssl"] [dependencies] -boreal = { path = "../boreal", version = "0.1.0" } +boreal = { path = "../boreal", version = "0.2.0" } # CLI arguments handling clap = { version = "4.0", features = ["derive"] } diff --git a/boreal-parser/Cargo.toml b/boreal-parser/Cargo.toml index 89052503..7b8ab94c 100644 --- a/boreal-parser/Cargo.toml +++ b/boreal-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal-parser" -version = "0.1.0" +version = "0.2.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 3230fdc8..7876ad53 100644 --- a/boreal/Cargo.toml +++ b/boreal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boreal" -version = "0.1.0" +version = "0.2.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" @@ -32,7 +32,7 @@ openssl = ["dep:openssl", "dep:openssl-sys", "dep:foreign-types-shared"] bench = ["dep:criterion"] [dependencies] -boreal-parser = { path = "../boreal-parser", version = "0.1.0" } +boreal-parser = { path = "../boreal-parser", version = "0.2.0" } # Proper error reporting on compilation codespan-reporting = "0.11"