-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update crates version and changelog file for
0.12.0
- Loading branch information
1 parent
440d70e
commit b982d1b
Showing
7 changed files
with
34 additions
and
18 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,14 +1,14 @@ | ||
[package] | ||
name = "gitql-cli" | ||
authors = ["AmrDeveloper"] | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
description = "GitQL Command line interface (CLI) components" | ||
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli" | ||
license = "MIT" | ||
|
||
[dependencies] | ||
gitql-ast = { path = "../gitql-ast", version = "0.9.0" } | ||
gitql-parser = { path = "../gitql-parser", version = "0.10.0" } | ||
gitql-ast = { path = "../gitql-ast", version = "0.10.0" } | ||
gitql-parser = { path = "../gitql-parser", version = "0.11.0" } | ||
comfy-table = "7.1.0" | ||
termcolor = "1.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,13 +1,13 @@ | ||
[package] | ||
name = "gitql-engine" | ||
authors = ["AmrDeveloper"] | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
description = "GitQL Engine" | ||
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine" | ||
license = "MIT" | ||
|
||
[dependencies] | ||
gitql-ast = { path = "../gitql-ast", version = "0.9.0" } | ||
gitql-ast = { path = "../gitql-ast", version = "0.10.0" } | ||
regex = "1.10.2" | ||
gix = { workspace = true, features = ["blob-diff"] } |
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,12 +1,12 @@ | ||
[package] | ||
name = "gitql-parser" | ||
authors = ["AmrDeveloper"] | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
edition = "2021" | ||
description = "GitQL parser" | ||
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser" | ||
license = "MIT" | ||
|
||
[dependencies] | ||
gitql-ast = { path = "../gitql-ast", version = "0.9.0" } | ||
gitql-ast = { path = "../gitql-ast", version = "0.10.0" } | ||
lazy_static = "1.4.0" |