Skip to content

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vthib committed Feb 12, 2023
1 parent 249bbc9 commit 8dea61c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions boreal-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion boreal-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions boreal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 8dea61c

Please sign in to comment.