Skip to content

Commit 59adc8f

Browse files
committed
0.6.3
* Allow multiline doc-comments (#232)
1 parent cd43387 commit 59adc8f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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.6.2"
6+
version = "0.6.3"
77
authors = [ "Kevin Mehall <[email protected]>" ]
88
license = "MIT"
99
repository = "https://github.com/kevinmehall/rust-peg"
@@ -15,8 +15,8 @@ readme = "README.md"
1515
edition = "2018"
1616

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

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

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.6.2"
3+
version = "0.6.3"
44
authors = [ "Kevin Mehall <[email protected]>" ]
55
license = "MIT"
66
repository = "https://github.com/kevinmehall/rust-peg"
@@ -10,7 +10,7 @@ edition = "2018"
1010
[dependencies]
1111
quote = "1.0"
1212
proc-macro2 = "1.0"
13-
peg-runtime = { version = "= 0.6.2", path = "../peg-runtime" }
13+
peg-runtime = { version = "= 0.6.3", 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.6.2"
3+
version = "0.6.3"
44
authors = [ "Kevin Mehall <[email protected]>" ]
55
license = "MIT"
66
repository = "https://github.com/kevinmehall/rust-peg"

0 commit comments

Comments
 (0)