From 8898f6445f2efeaf50142cd7355178a75bd3d559 Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Sat, 15 Feb 2020 10:54:37 -0800 Subject: [PATCH] 0.6.2 --- 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 e2c0d39..562f80c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"] [package] name = "peg" -version = "0.6.1" +version = "0.6.2" 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.1" } -peg-runtime = { path = "./peg-runtime", version = "= 0.6.1" } +peg-macros = { path = "./peg-macros", version = "= 0.6.2" } +peg-runtime = { path = "./peg-runtime", version = "= 0.6.2" } [dev-dependencies] trybuild = "1.0" diff --git a/peg-macros/Cargo.toml b/peg-macros/Cargo.toml index 22c2b30..368220a 100644 --- a/peg-macros/Cargo.toml +++ b/peg-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-macros" -version = "0.6.1" +version = "0.6.2" 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.1", path = "../peg-runtime" } +peg-runtime = { version = "= 0.6.2", path = "../peg-runtime" } [features] trace = [] diff --git a/peg-runtime/Cargo.toml b/peg-runtime/Cargo.toml index 21aad22..249c90d 100644 --- a/peg-runtime/Cargo.toml +++ b/peg-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-runtime" -version = "0.6.1" +version = "0.6.2" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg"