generated from rust-vmm/crate-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a changelog and bump the version. The first release will be 0.2.0 since 0.1.0 was used for publishing an empty seccompiler crate for reservation purposes. Signed-off-by: alindima <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# v0.2.0 | ||
|
||
First release | ||
|
||
## Added | ||
|
||
- [[#7]](https://github.com/rust-vmm/seccompiler/pull/7): Add functionality for | ||
Rust-based filters and implement the BPF compilation logic. | ||
- [[#9]](https://github.com/rust-vmm/seccompiler/pull/9): Add json frontend, | ||
gated by the `json` feature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "seccompiler" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Amazon Firecracker Team <[email protected]>"] | ||
description = "Provides easy-to-use seccomp-bpf jailing." | ||
repository = "https://github.com/rust-vmm/seccompiler" | ||
|