From fc7d27f0a5c52666f645bec6ec9be001f171b411 Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Sun, 21 Jul 2024 10:07:11 -0600 Subject: [PATCH] v0.8.4 peg-runtime unchanged --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- peg-macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c12caba..7290cc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,7 +31,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "peg" -version = "0.8.3" +version = "0.8.4" dependencies = [ "peg-macros", "peg-runtime", @@ -41,7 +41,7 @@ dependencies = [ [[package]] name = "peg-macros" -version = "0.8.3" +version = "0.8.4" dependencies = [ "peg-runtime", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index d4909e4..2be5002 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./peg-macros", "./peg-runtime"] [package] name = "peg" -version = "0.8.3" +version = "0.8.4" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg" @@ -15,7 +15,7 @@ edition = "2018" rust-version = "1.68.0" # if changed, also update .github/workflows/rust.yml [dependencies] -peg-macros = { path = "./peg-macros", version = "= 0.8.3" } +peg-macros = { path = "./peg-macros", version = "= 0.8.4" } peg-runtime = { path = "./peg-runtime", version = "= 0.8.3" } [dev-dependencies] diff --git a/peg-macros/Cargo.toml b/peg-macros/Cargo.toml index 7985788..c3fa32b 100644 --- a/peg-macros/Cargo.toml +++ b/peg-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "peg-macros" -version = "0.8.3" +version = "0.8.4" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg"