From 59adc8f6bdada28247932fcee6c9e890e728bfd0 Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Tue, 21 Jul 2020 20:43:44 -0600 Subject: [PATCH] 0.6.3 * Allow multiline doc-comments (#232) --- Cargo.toml | 6 +++--- peg-macros/Cargo.toml | 4 ++-- peg-runtime/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 562f80c..362a235 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"] [package] name = "peg" -version = "0.6.2" +version = "0.6.3" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg" @@ -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" diff --git a/peg-macros/Cargo.toml b/peg-macros/Cargo.toml index 368220a..2d58ea4 100644 --- a/peg-macros/Cargo.toml +++ b/peg-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-macros" -version = "0.6.2" +version = "0.6.3" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg" @@ -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 = [] diff --git a/peg-runtime/Cargo.toml b/peg-runtime/Cargo.toml index 249c90d..cccfb2c 100644 --- a/peg-runtime/Cargo.toml +++ b/peg-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-runtime" -version = "0.6.2" +version = "0.6.3" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg"