Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Mar 19, 2023
1 parent 280321c commit 8c410fa
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
# tree-crasher-{regex,sql} currently aren't suitable for upload to
# crates.io because they have git dependencies
for pkg in tree-crasher{,-javascript,-regex,-rust}; do
for pkg in tree-crasher{,-javascript,-rust}; do
if [[ ${PUSH} == true ]]; then
cargo publish --token ${CRATES_IO_TOKEN} -p "${pkg}"
else
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

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

## [0.1.1] - 2023-03-19

- Fix issue with release CI

## [0.1.0] - 2023-03-19

Initial release!

[0.1.0]: https://github.com/langston-barrett/tree-crasher/releases/tag/v0.1.0
[0.1.1]: https://github.com/langston-barrett/tree-crasher/releases/tag/v0.1.1
10 changes: 5 additions & 5 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-crasher-javascript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-crasher-javascript"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Easy-to-use grammar-based black-box fuzzer"
keywords = ["black-box", "fuzzer", "grammar-based"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-crasher"

[dependencies]
anyhow = "1"
tree-crasher = { version = "0.1.0", path = "../tree-crasher" }
tree-crasher = { version = "0.1.1", path = "../tree-crasher" }
tree-sitter-javascript = "0.20"
4 changes: 2 additions & 2 deletions crates/tree-crasher-regex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-crasher-regex"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Easy-to-use grammar-based black-box fuzzer"
keywords = ["black-box", "fuzzer", "grammar-based"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-crasher"

[dependencies]
anyhow = "1"
tree-crasher = { version = "0.1.0", path = "../tree-crasher" }
tree-crasher = { version = "0.1.1", path = "../tree-crasher" }
tree-sitter-regex = { git = "https://github.com/tree-sitter/tree-sitter-regex" }
11 changes: 9 additions & 2 deletions crates/tree-crasher-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[package]
name = "tree-crasher-rust"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Easy-to-use grammar-based black-box fuzzer"
keywords = ["black-box", "fuzzer", "grammar-based"]
authors = ["Langston Barrett <langston.barrett@gmail.com>"]
license = "MIT"
readme = "../../README.md"
homepage = "https://github.com/langston-barrett/tree-crasher"
repository = "https://github.com/langston-barrett/tree-crasher"

[dependencies]
anyhow = "1"
tree-crasher = { version = "0.1.0", path = "../tree-crasher" }
tree-crasher = { version = "0.1.1", path = "../tree-crasher" }
tree-sitter-rust = "0.20"
4 changes: 2 additions & 2 deletions crates/tree-crasher-sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-crasher-sql"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Easy-to-use grammar-based black-box fuzzer"
keywords = ["black-box", "fuzzer", "grammar-based"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-crasher"

[dependencies]
anyhow = "1"
tree-crasher = { version = "0.1.0", path = "../tree-crasher" }
tree-crasher = { version = "0.1.1", path = "../tree-crasher" }
tree-sitter-sql = { git = "https://github.com/langston-barrett/tree-sitter-sql" }
2 changes: 1 addition & 1 deletion crates/tree-crasher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-crasher"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Easy-to-use grammar-based black-box fuzzer"
keywords = ["black-box", "fuzzer", "grammar-based"]
Expand Down

0 comments on commit 8c410fa

Please sign in to comment.