From 21287a93a41733b762f28cd4c0043b9c35bcd9a8 Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:15:42 +0800 Subject: [PATCH] bump version to 2.7.11 --- debugger/Cargo.toml | 8 ++++---- derive/Cargo.toml | 6 +++--- generator/Cargo.toml | 6 +++--- grammars/Cargo.toml | 6 +++--- meta/Cargo.toml | 4 ++-- pest/Cargo.toml | 2 +- vm/Cargo.toml | 6 +++--- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/debugger/Cargo.toml b/debugger/Cargo.toml index e87337c4..19c3c6ee 100644 --- a/debugger/Cargo.toml +++ b/debugger/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_debugger" description = "pest grammar debugger" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = [ "Dragoș Tiselice ", @@ -17,9 +17,9 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.10" } -pest_meta = { path = "../meta", version = "2.7.10" } -pest_vm = { path = "../vm", version = "2.7.10" } +pest = { path = "../pest", version = "2.7.11" } +pest_meta = { path = "../meta", version = "2.7.11" } +pest_vm = { path = "../vm", version = "2.7.11" } reqwest = { version = "= 0.11.13", default-features = false, features = [ "blocking", "json", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index dbdfb25c..d1962030 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_derive" description = "pest's derive macro" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -25,5 +25,5 @@ grammar-extras = ["pest_generator/grammar-extras"] [dependencies] # for tests, included transitively anyway -pest = { path = "../pest", version = "2.7.10", default-features = false } -pest_generator = { path = "../generator", version = "2.7.10", default-features = false } +pest = { path = "../pest", version = "2.7.11", default-features = false } +pest_generator = { path = "../generator", version = "2.7.11", default-features = false } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 77b5196c..3fb8ebf8 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_generator" description = "pest code generator" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -22,8 +22,8 @@ grammar-extras = ["pest_meta/grammar-extras"] export-internal = [] [dependencies] -pest = { path = "../pest", version = "2.7.10", default-features = false } -pest_meta = { path = "../meta", version = "2.7.10" } +pest = { path = "../pest", version = "2.7.11", default-features = false } +pest_meta = { path = "../meta", version = "2.7.11" } proc-macro2 = "1.0" quote = "1.0" syn = "2.0" diff --git a/grammars/Cargo.toml b/grammars/Cargo.toml index 0b5393cc..c9116749 100644 --- a/grammars/Cargo.toml +++ b/grammars/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_grammars" description = "pest popular grammar implementations" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.10" } -pest_derive = { path = "../derive", version = "2.7.10" } +pest = { path = "../pest", version = "2.7.11" } +pest_derive = { path = "../derive", version = "2.7.11" } [dev-dependencies] criterion = "0.5" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 30927647..b2989b3c 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_meta" description = "pest meta language parser and validator" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -22,7 +22,7 @@ include = [ rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.10" } +pest = { path = "../pest", version = "2.7.11" } once_cell = "1.8.0" [build-dependencies] diff --git a/pest/Cargo.toml b/pest/Cargo.toml index 508b1b83..0334862a 100644 --- a/pest/Cargo.toml +++ b/pest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest" description = "The Elegant Parser" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index f8c8e550..22d72418 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pest_vm" description = "pest grammar virtual machine" -version = "2.7.10" +version = "2.7.11" edition = "2021" authors = ["Dragoș Tiselice "] homepage = "https://pest.rs/" @@ -14,8 +14,8 @@ readme = "_README.md" rust-version = "1.61" [dependencies] -pest = { path = "../pest", version = "2.7.10" } -pest_meta = { path = "../meta", version = "2.7.10" } +pest = { path = "../pest", version = "2.7.11" } +pest_meta = { path = "../meta", version = "2.7.11" } [features] grammar-extras = ["pest_meta/grammar-extras"]