Skip to content

Commit

Permalink
0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmehall committed Oct 10, 2023
1 parent a85e71b commit 400acf6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"]

[package]
name = "peg"
version = "0.8.1"
version = "0.8.2"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand All @@ -15,8 +15,8 @@ edition = "2018"
rust-version = "1.68.0" # if changed, also update .github/workflows/rust.yml

[dependencies]
peg-macros = { path = "./peg-macros", version = "= 0.8.1" }
peg-runtime = { path = "./peg-runtime", version = "= 0.8.1" }
peg-macros = { path = "./peg-macros", version = "= 0.8.2" }
peg-runtime = { path = "./peg-runtime", version = "= 0.8.2" }

[dev-dependencies]
trybuild = "1.0.80"
Expand Down
4 changes: 2 additions & 2 deletions peg-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peg-macros"
version = "0.8.1"
version = "0.8.2"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand All @@ -10,7 +10,7 @@ edition = "2018"
[dependencies]
quote = "1.0"
proc-macro2 = "1.0.24"
peg-runtime = { version = "= 0.8.1", path = "../peg-runtime" }
peg-runtime = { version = "= 0.8.2", path = "../peg-runtime" }

[features]
trace = []
Expand Down
2 changes: 1 addition & 1 deletion peg-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peg-runtime"
version = "0.8.1"
version = "0.8.2"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand Down

0 comments on commit 400acf6

Please sign in to comment.