Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Jul 17, 2023
1 parent 5d3ed73 commit 732b279
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<!-- https://keepachangelog.com/en/1.0.0/ -->

## [0.5.0] - 2023-07-17

- Small changes to library API
- Bump dependencies

## [0.4.0] - 2023-04-06

- Add `--max-size`
Expand Down
8 changes: 4 additions & 4 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 crates/tree-splicer-javascript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-splicer-javascript"
description = "Simple grammar-based JavaScript program generator"
version = "0.4.0"
version = "0.5.0"
keywords = ["black-box", "fuzzer", "grammar-based", "javascript"]
edition = "2021"
authors = ["Langston Barrett <[email protected]>"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"

[dependencies]
anyhow = "1"
tree-splicer = { version = "0.4.0", path = "../tree-splicer", features = ["cli"] }
tree-splicer = { version = "0.5.0", path = "../tree-splicer", features = ["cli"] }
tree-sitter-javascript = "0.20"
4 changes: 2 additions & 2 deletions crates/tree-splicer-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-splicer-rust"
description = "Simple grammar-based Rust program generator"
version = "0.4.0"
version = "0.5.0"
keywords = ["black-box", "fuzzer", "grammar-based", "rust"]
edition = "2021"
authors = ["Langston Barrett <[email protected]>"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"

[dependencies]
anyhow = "1"
tree-splicer = { version = "0.4.0", path = "../tree-splicer", features = ["cli"] }
tree-splicer = { version = "0.5.0", path = "../tree-splicer", features = ["cli"] }
tree-sitter-rust = "0.20"
4 changes: 2 additions & 2 deletions crates/tree-splicer-typescript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-splicer-typescript"
description = "Simple grammar-based TypeScript program generator"
version = "0.4.0"
version = "0.5.0"
keywords = ["black-box", "fuzzer", "grammar-based", "typescript"]
edition = "2021"
authors = ["Langston Barrett <[email protected]>"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"

[dependencies]
anyhow = "1"
tree-splicer = { version = "0.4.0", path = "../tree-splicer", features = ["cli"] }
tree-splicer = { version = "0.5.0", path = "../tree-splicer", features = ["cli"] }
tree-sitter-typescript = "0.20"
2 changes: 1 addition & 1 deletion crates/tree-splicer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-splicer"
version = "0.4.0"
version = "0.5.0"
description = "Simple grammar-based test case generator (black-box fuzzer)"
keywords = ["black-box", "fuzzer", "grammar-based", "rust"]
edition = "2021"
Expand Down

0 comments on commit 732b279

Please sign in to comment.