Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Mar 12, 2023
1 parent b548694 commit 4b820d9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
tags:
- 'v*'

env:
# The NAME makes it easier to copy/paste snippets from other CI configs
NAME: tree-splicer

jobs:
release:
runs-on: ubuntu-latest
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

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

## [0.1.0] - 2023-03-12

Initial release!

[0.1.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.1.0
4 changes: 2 additions & 2 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-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.0.0"
version = "0.1.0"
keywords = ["black-box", "fuzzer", "grammar-based", "rust"]
edition = "2021"
authors = ["Langston Barrett <langston.barrett@gmail.com>"]
Expand All @@ -12,5 +12,5 @@ repository = "https://github.com/langston-barrett/tree-splicer"

[dependencies]
anyhow = "1"
tree-splicer = { version = "0.0.0", path = "../tree-splicer", features = ["cli"] }
tree-splicer = { version = "0.1.0", path = "../tree-splicer", features = ["cli"] }
tree-sitter-rust = "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.0.0"
version = "0.1.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 4b820d9

Please sign in to comment.