-
-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version and adjust CI guards (#1039)
* fix color output in CI
- Loading branch information
Showing
9 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_debugger" | ||
description = "pest grammar debugger" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = [ | ||
"Dragoș Tiselice <[email protected]>", | ||
|
@@ -17,9 +17,9 @@ readme = "_README.md" | |
rust-version = "1.61" | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.7.12" } | ||
pest_meta = { path = "../meta", version = "2.7.12" } | ||
pest_vm = { path = "../vm", version = "2.7.12" } | ||
pest = { path = "../pest", version = "2.7.13" } | ||
pest_meta = { path = "../meta", version = "2.7.13" } | ||
pest_vm = { path = "../vm", version = "2.7.13" } | ||
reqwest = { version = "= 0.11.13", default-features = false, features = [ | ||
"blocking", | ||
"json", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_derive" | ||
description = "pest's derive macro" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
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.12", default-features = false } | ||
pest_generator = { path = "../generator", version = "2.7.12", default-features = false } | ||
pest = { path = "../pest", version = "2.7.13", default-features = false } | ||
pest_generator = { path = "../generator", version = "2.7.13", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_generator" | ||
description = "pest code generator" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest.rs/" | ||
|
@@ -22,8 +22,8 @@ grammar-extras = ["pest_meta/grammar-extras"] | |
export-internal = [] | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.7.12", default-features = false } | ||
pest_meta = { path = "../meta", version = "2.7.12" } | ||
pest = { path = "../pest", version = "2.7.13", default-features = false } | ||
pest_meta = { path = "../meta", version = "2.7.13" } | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_grammars" | ||
description = "pest popular grammar implementations" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest.rs/" | ||
|
@@ -14,8 +14,8 @@ readme = "_README.md" | |
rust-version = "1.61" | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.7.12" } | ||
pest_derive = { path = "../derive", version = "2.7.12" } | ||
pest = { path = "../pest", version = "2.7.13" } | ||
pest_derive = { path = "../derive", version = "2.7.13" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_meta" | ||
description = "pest meta language parser and validator" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest.rs/" | ||
|
@@ -22,7 +22,7 @@ include = [ | |
rust-version = "1.61" | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.7.12" } | ||
pest = { path = "../pest", version = "2.7.13" } | ||
once_cell = "1.8.0" | ||
|
||
[build-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest" | ||
description = "The Elegant Parser" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest.rs/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pest_vm" | ||
description = "pest grammar virtual machine" | ||
version = "2.7.12" | ||
version = "2.7.13" | ||
edition = "2021" | ||
authors = ["Dragoș Tiselice <[email protected]>"] | ||
homepage = "https://pest.rs/" | ||
|
@@ -14,8 +14,8 @@ readme = "_README.md" | |
rust-version = "1.61" | ||
|
||
[dependencies] | ||
pest = { path = "../pest", version = "2.7.12" } | ||
pest_meta = { path = "../meta", version = "2.7.12" } | ||
pest = { path = "../pest", version = "2.7.13" } | ||
pest_meta = { path = "../meta", version = "2.7.13" } | ||
|
||
[features] | ||
grammar-extras = ["pest_meta/grammar-extras"] |