Skip to content

Commit 4b820d9

Browse files
v0.1.0
1 parent b548694 commit 4b820d9

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
tags:
88
- 'v*'
99

10+
env:
11+
# The NAME makes it easier to copy/paste snippets from other CI configs
12+
NAME: tree-splicer
13+
1014
jobs:
1115
release:
1216
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
<!-- https://keepachangelog.com/en/1.0.0/ -->
4+
5+
## [0.1.0] - 2023-03-12
6+
7+
Initial release!
8+
9+
[0.1.0]: https://github.com/langston-barrett/tree-splicer/releases/tag/v0.1.0

Cargo.lock

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

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.0.0"
4+
version = "0.1.0"
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.0.0", path = "../tree-splicer", features = ["cli"] }
15+
tree-splicer = { version = "0.1.0", path = "../tree-splicer", features = ["cli"] }
1616
tree-sitter-rust = "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.0.0"
3+
version = "0.1.0"
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)