Skip to content

Commit 8dea61c

Browse files
committed
release 0.2.0
1 parent 249bbc9 commit 8dea61c

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0] - 2023-02-12
11+
1012
Main changes:
1113

1214
- Compilation and evaluation of rules have been hardened, and it is now
@@ -72,5 +74,6 @@ Main changes:
7274

7375
Initial release.
7476

75-
[unreleased]: https://github.com/vthib/boreal/compare/v1.1.0...HEAD
77+
[unreleased]: https://github.com/vthib/boreal/compare/v0.2.0...HEAD
78+
[0.2.0]: https://github.com/vthib/boreal/releases/tag/v0.2.0
7679
[0.1.0]: https://github.com/vthib/boreal/releases/tag/v0.1.0

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

boreal-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boreal-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "CLI utility to run boreal, a YARA rules engine"
55
repository = "https://github.com/vthib/boreal"
66
readme = "README.md"
@@ -17,7 +17,7 @@ path = "src/main.rs"
1717
openssl = ["boreal/openssl"]
1818

1919
[dependencies]
20-
boreal = { path = "../boreal", version = "0.1.0" }
20+
boreal = { path = "../boreal", version = "0.2.0" }
2121

2222
# CLI arguments handling
2323
clap = { version = "4.0", features = ["derive"] }

boreal-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boreal-parser"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A parser library for YARA files, intended for use with the boreal library"
55
repository = "https://github.com/vthib/boreal"
66
readme = "README.md"

boreal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boreal"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A library to evaluate YARA rules, used to scan bytes for textual and binary pattern"
55
repository = "https://github.com/vthib/boreal"
66
readme = "README.md"
@@ -32,7 +32,7 @@ openssl = ["dep:openssl", "dep:openssl-sys", "dep:foreign-types-shared"]
3232
bench = ["dep:criterion"]
3333

3434
[dependencies]
35-
boreal-parser = { path = "../boreal-parser", version = "0.1.0" }
35+
boreal-parser = { path = "../boreal-parser", version = "0.2.0" }
3636

3737
# Proper error reporting on compilation
3838
codespan-reporting = "0.11"

0 commit comments

Comments
 (0)