From e2d2988b352863e817df9a309965d6474a384dc6 Mon Sep 17 00:00:00 2001 From: AmrDeveloper Date: Fri, 1 Mar 2024 13:47:52 +0200 Subject: [PATCH] Update GitQL and crates versions --- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- crates/gitql-ast/Cargo.toml | 2 +- crates/gitql-cli/Cargo.toml | 6 +++--- crates/gitql-engine/Cargo.toml | 4 ++-- crates/gitql-parser/Cargo.toml | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 968bdcf5..d7412e89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "gitql" -version = "0.14.0" +version = "0.15.0" dependencies = [ "atty", "gitql-ast", @@ -464,7 +464,7 @@ dependencies = [ [[package]] name = "gitql-ast" -version = "0.12.0" +version = "0.13.0" dependencies = [ "chrono", "csv", @@ -474,7 +474,7 @@ dependencies = [ [[package]] name = "gitql-cli" -version = "0.14.0" +version = "0.15.0" dependencies = [ "comfy-table", "gitql-ast", @@ -484,7 +484,7 @@ dependencies = [ [[package]] name = "gitql-engine" -version = "0.14.0" +version = "0.15.0" dependencies = [ "gitql-ast", "gix", @@ -493,7 +493,7 @@ dependencies = [ [[package]] name = "gitql-parser" -version = "0.13.0" +version = "0.14.0" dependencies = [ "gitql-ast", ] diff --git a/Cargo.toml b/Cargo.toml index f46ba35b..adb88404 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql" authors = ["AmrDeveloper"] -version = "0.14.0" +version = "0.15.0" edition = "2021" description = "A SQL like query language to perform queries on .git files" license = "MIT" @@ -24,10 +24,10 @@ members = [ gix = { version = "0.58.0", default-features = false } [dependencies] -gitql-ast = { path = "./crates/gitql-ast", version = "0.12.0" } -gitql-parser = { path = "./crates/gitql-parser", version = "0.13.0" } -gitql-engine = { path = "./crates/gitql-engine", version = "0.14.0" } -gitql-cli = { path = "./crates/gitql-cli", version = "0.14.0" } +gitql-ast = { path = "./crates/gitql-ast", version = "0.13.0" } +gitql-parser = { path = "./crates/gitql-parser", version = "0.14.0" } +gitql-engine = { path = "./crates/gitql-engine", version = "0.15.0" } +gitql-cli = { path = "./crates/gitql-cli", version = "0.15.0" } gix = { workspace = true, features = ["max-performance"] } atty = "0.2.14" lazy_static = "1.4.0" diff --git a/crates/gitql-ast/Cargo.toml b/crates/gitql-ast/Cargo.toml index 793a6e54..d94fa534 100644 --- a/crates/gitql-ast/Cargo.toml +++ b/crates/gitql-ast/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-ast" authors = ["AmrDeveloper"] -version = "0.12.0" +version = "0.13.0" edition = "2021" description = "GitQL Abstract syntax tree (AST)" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast" diff --git a/crates/gitql-cli/Cargo.toml b/crates/gitql-cli/Cargo.toml index ee1d048e..acda19bd 100644 --- a/crates/gitql-cli/Cargo.toml +++ b/crates/gitql-cli/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "gitql-cli" authors = ["AmrDeveloper"] -version = "0.14.0" +version = "0.15.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.12.0" } -gitql-parser = { path = "../gitql-parser", version = "0.13.0" } +gitql-ast = { path = "../gitql-ast", version = "0.13.0" } +gitql-parser = { path = "../gitql-parser", version = "0.14.0" } comfy-table = "7.1.0" termcolor = "1.4.1" diff --git a/crates/gitql-engine/Cargo.toml b/crates/gitql-engine/Cargo.toml index 5b581a8c..21e1e71b 100644 --- a/crates/gitql-engine/Cargo.toml +++ b/crates/gitql-engine/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "gitql-engine" authors = ["AmrDeveloper"] -version = "0.14.0" +version = "0.15.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.12.0" } +gitql-ast = { path = "../gitql-ast", version = "0.13.0" } regex = "1.10.2" gix = { workspace = true, features = ["blob-diff"] } diff --git a/crates/gitql-parser/Cargo.toml b/crates/gitql-parser/Cargo.toml index 5ab0475d..7226f08f 100644 --- a/crates/gitql-parser/Cargo.toml +++ b/crates/gitql-parser/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "gitql-parser" authors = ["AmrDeveloper"] -version = "0.13.0" +version = "0.14.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.12.0" } +gitql-ast = { path = "../gitql-ast", version = "0.13.0" }