Skip to content

Commit 7a93372

Browse files
v0.3.1
1 parent 83ebd8e commit 7a93372

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## [0.3.1] - 2023-03-24
6+
7+
- Fix a panic
8+
59
## [0.3.0] - 2023-03-19
610

711
### Added
@@ -44,4 +48,5 @@ Initial release!
4448

4549
[0.1.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.1.0
4650
[0.2.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.2.0
47-
[0.3.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.3.0
51+
[0.3.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.3.0
52+
[0.3.1]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.3.1

Cargo.lock

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ example.
103103
### clang
104104

105105
[#61635](https://github.com/llvm/llvm-project/issues/61635)
106+
[#61666](https://github.com/llvm/llvm-project/issues/61666)
107+
[#61667](https://github.com/llvm/llvm-project/issues/61667)
106108

107109
### deno
108110

crates/tree-splicer-javascript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-splicer-javascript"
33
description = "Simple grammar-based JavaScript program generator"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
keywords = ["black-box", "fuzzer", "grammar-based", "javascript"]
66
edition = "2021"
77
authors = ["Langston Barrett <langston.barrett@gmail.com>"]
@@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"
1212

1313
[dependencies]
1414
anyhow = "1"
15-
tree-splicer = { version = "0.3.0", path = "../tree-splicer", features = ["cli"] }
15+
tree-splicer = { version = "0.3.1", path = "../tree-splicer", features = ["cli"] }
1616
tree-sitter-javascript = "0.20"

crates/tree-splicer-rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-splicer-rust"
33
description = "Simple grammar-based Rust program generator"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
keywords = ["black-box", "fuzzer", "grammar-based", "rust"]
66
edition = "2021"
77
authors = ["Langston Barrett <langston.barrett@gmail.com>"]
@@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"
1212

1313
[dependencies]
1414
anyhow = "1"
15-
tree-splicer = { version = "0.3.0", path = "../tree-splicer", features = ["cli"] }
15+
tree-splicer = { version = "0.3.1", path = "../tree-splicer", features = ["cli"] }
1616
tree-sitter-rust = "0.20"

crates/tree-splicer-typescript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-splicer-typescript"
33
description = "Simple grammar-based TypeScript program generator"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
keywords = ["black-box", "fuzzer", "grammar-based", "typescript"]
66
edition = "2021"
77
authors = ["Langston Barrett <langston.barrett@gmail.com>"]
@@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"
1212

1313
[dependencies]
1414
anyhow = "1"
15-
tree-splicer = { version = "0.3.0", path = "../tree-splicer", features = ["cli"] }
15+
tree-splicer = { version = "0.3.1", path = "../tree-splicer", features = ["cli"] }
1616
tree-sitter-typescript = "0.20"

crates/tree-splicer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tree-splicer"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Simple grammar-based test case generator (black-box fuzzer)"
55
keywords = ["black-box", "fuzzer", "grammar-based", "rust"]
66
edition = "2021"

0 commit comments

Comments
 (0)