Skip to content

Commit

Permalink
0.6.3
Browse files Browse the repository at this point in the history
* Allow multiline doc-comments (#232)
  • Loading branch information
kevinmehall committed Jul 22, 2020
1 parent cd43387 commit 59adc8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.6.2"
version = "0.6.3"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
edition = "2018"

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

[dev-dependencies]
trybuild = "1.0"
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.6.2"
version = "0.6.3"
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"
peg-runtime = { version = "= 0.6.2", path = "../peg-runtime" }
peg-runtime = { version = "= 0.6.3", 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.6.2"
version = "0.6.3"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand Down

0 comments on commit 59adc8f

Please sign in to comment.