Skip to content

Commit 95b701a

Browse files
committed
Update GitQL & GitQL SDK components versions
1 parent aa37197 commit 95b701a

8 files changed

Lines changed: 24 additions & 23 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql"
33
authors = ["AmrDeveloper"]
4-
version = "0.40.0"
4+
version = "0.41.0"
55
edition = "2024"
66
description = "A SQL like query language to perform queries on .git files"
77
license = "MIT"
@@ -37,12 +37,13 @@ indexmap = { version = "2.11.4" }
3737
phf = { version = "0.13.1" }
3838
linked-hash-map = { version = "0.5.6" }
3939
uuid = { version = "1.18.1", features = ["v4"] }
40-
gitql-core = { path = "./crates/gitql-core", version = "0.17.0" }
41-
gitql-std = { path = "./crates/gitql-std", version = "0.17.0" }
42-
gitql-ast = { path = "./crates/gitql-ast", version = "0.36.0" }
43-
gitql-parser = { path = "./crates/gitql-parser", version = "0.39.0" }
44-
gitql-engine = { path = "./crates/gitql-engine", version = "0.40.0" }
45-
gitql-cli = { path = "./crates/gitql-cli", version = "0.40.0" }
40+
41+
gitql-core = { path = "./crates/gitql-core", version = "0.18.0" }
42+
gitql-std = { path = "./crates/gitql-std", version = "0.18.0" }
43+
gitql-ast = { path = "./crates/gitql-ast", version = "0.37.0" }
44+
gitql-parser = { path = "./crates/gitql-parser", version = "0.40.0" }
45+
gitql-engine = { path = "./crates/gitql-engine", version = "0.41.0" }
46+
gitql-cli = { path = "./crates/gitql-cli", version = "0.41.0" }
4647

4748
[profile.release]
4849
lto = true

crates/gitql-ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-ast"
33
authors = ["AmrDeveloper"]
4-
version = "0.36.0"
4+
version = "0.37.0"
55
edition = "2021"
66
description = "GitQL Abstract syntax tree (AST)"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast"

crates/gitql-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-cli"
33
authors = ["AmrDeveloper"]
4-
version = "0.40.0"
4+
version = "0.41.0"
55
edition = "2021"
66
description = "GitQL Command line interface (CLI) components"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
@@ -10,9 +10,9 @@ keywords = ["cli", "gql", "language", "git", "sql"]
1010
categories = ["command-line-utilities"]
1111

1212
[dependencies]
13-
gitql-core = { path = "../gitql-core", version = "0.17.0" }
14-
gitql-ast = { path = "../gitql-ast", version = "0.36.0" }
15-
gitql-parser = { path = "../gitql-parser", version = "0.39.0" }
13+
gitql-core = { workspace = true }
14+
gitql-ast = { workspace = true }
15+
gitql-parser = { workspace = true }
1616
comfy-table = { workspace = true }
1717
termcolor = { workspace = true }
1818
serde_json = { workspace = true }

crates/gitql-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-core"
33
authors = ["AmrDeveloper"]
4-
version = "0.17.0"
4+
version = "0.18.0"
55
edition = "2021"
66
description = "GitQL Core components"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"

crates/gitql-engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-engine"
33
authors = ["AmrDeveloper"]
4-
version = "0.40.0"
4+
version = "0.41.0"
55
edition = "2021"
66
description = "GitQL Engine"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine"

crates/gitql-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-parser"
33
authors = ["AmrDeveloper"]
4-
version = "0.39.0"
4+
version = "0.40.0"
55
edition = "2021"
66
description = "GitQL parser"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser"

crates/gitql-std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-std"
33
authors = ["AmrDeveloper"]
4-
version = "0.17.0"
4+
version = "0.18.0"
55
edition = "2021"
66
description = "GitQL Standard and Aggregation functions"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"

0 commit comments

Comments
 (0)