diff --git a/Cargo.toml b/Cargo.toml index 0c20577..e2c0d39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"] [package] name = "peg" -version = "0.6.0" +version = "0.6.1" 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.0" } -peg-runtime = { path = "./peg-runtime", version = "= 0.6.0" } +peg-macros = { path = "./peg-macros", version = "= 0.6.1" } +peg-runtime = { path = "./peg-runtime", version = "= 0.6.1" } [dev-dependencies] trybuild = "1.0" diff --git a/peg-macros/Cargo.toml b/peg-macros/Cargo.toml index 8f976c9..22c2b30 100644 --- a/peg-macros/Cargo.toml +++ b/peg-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-macros" -version = "0.6.0" +version = "0.6.1" 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.0", path = "../peg-runtime" } +peg-runtime = { version = "= 0.6.1", path = "../peg-runtime" } [features] trace = [] diff --git a/peg-runtime/Cargo.toml b/peg-runtime/Cargo.toml index e134b80..21aad22 100644 --- a/peg-runtime/Cargo.toml +++ b/peg-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-runtime" -version = "0.6.0" +version = "0.6.1" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg"