Skip to content

Commit 79823ff

Browse files
committed
v0.8.5
1 parent 721f6a4 commit 79823ff

File tree

4 files changed

+136
-64
lines changed

4 files changed

+136
-64
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"]
33

44
[package]
55
name = "peg"
6-
version = "0.8.4"
6+
version = "0.8.5"
77
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
88
license = "MIT"
99
repository = "https://github.com/kevinmehall/rust-peg"
@@ -15,8 +15,8 @@ edition = "2021"
1515
rust-version = "1.68.0" # if changed, also update .github/workflows/rust.yml
1616

1717
[dependencies]
18-
peg-macros = { path = "./peg-macros", version = "= 0.8.4" }
19-
peg-runtime = { path = "./peg-runtime", version = "= 0.8.3" }
18+
peg-macros = { path = "./peg-macros", version = "= 0.8.5" }
19+
peg-runtime = { path = "./peg-runtime", version = "= 0.8.5" }
2020

2121
[dev-dependencies]
2222
trybuild = "1.0.80"

peg-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peg-macros"
3-
version = "0.8.4"
3+
version = "0.8.5"
44
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
55
license = "MIT"
66
repository = "https://github.com/kevinmehall/rust-peg"
@@ -10,7 +10,7 @@ edition = "2021"
1010
[dependencies]
1111
quote = "1.0"
1212
proc-macro2 = "1.0.24"
13-
peg-runtime = { version = "= 0.8.3", path = "../peg-runtime" }
13+
peg-runtime = { version = "= 0.8.5", path = "../peg-runtime" }
1414

1515
[features]
1616
trace = []

peg-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peg-runtime"
3-
version = "0.8.3"
3+
version = "0.8.5"
44
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
55
license = "MIT"
66
repository = "https://github.com/kevinmehall/rust-peg"

0 commit comments

Comments
 (0)