Skip to content

Commit d9db510

Browse files
committed
Updte GitQL & GitQL SDK Versions
1 parent a8ff934 commit d9db510

9 files changed

Lines changed: 29 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## Version 0.43.0 _(2026-03-09)_
4+
5+
- Support `=` operator between Raw expressions.
6+
- Support `!=` operator between Raw expressions.
7+
- Migrate to Gix 0.80.0.
8+
- Fix out of index panic when groups length is zero.
9+
- Handling optional commit author and committer.
10+
- Add interval to supported types.
11+
312
## Version 0.42.0 _(2025-11-16)_
413

514
- Support postgresql syntax of intervals.

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: 7 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.42.0"
4+
version = "0.43.0"
55
edition = "2024"
66
description = "A SQL like query language to perform queries on .git files"
77
license = "MIT"
@@ -38,12 +38,12 @@ phf = { version = "0.13.1" }
3838
linked-hash-map = { version = "0.5.6" }
3939
uuid = { version = "1.18.1", features = ["v4"] }
4040

41-
gitql-core = { path = "./crates/gitql-core", version = "0.19.0" }
42-
gitql-std = { path = "./crates/gitql-std", version = "0.19.0" }
43-
gitql-ast = { path = "./crates/gitql-ast", version = "0.38.0" }
44-
gitql-parser = { path = "./crates/gitql-parser", version = "0.41.0" }
45-
gitql-engine = { path = "./crates/gitql-engine", version = "0.42.0" }
46-
gitql-cli = { path = "./crates/gitql-cli", version = "0.42.0" }
41+
gitql-core = { path = "./crates/gitql-core", version = "0.20.0" }
42+
gitql-std = { path = "./crates/gitql-std", version = "0.20.0" }
43+
gitql-ast = { path = "./crates/gitql-ast", version = "0.39.0" }
44+
gitql-parser = { path = "./crates/gitql-parser", version = "0.42.0" }
45+
gitql-engine = { path = "./crates/gitql-engine", version = "0.43.0" }
46+
gitql-cli = { path = "./crates/gitql-cli", version = "0.43.0" }
4747

4848
[profile.release]
4949
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.38.0"
4+
version = "0.39.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-cli"
33
authors = ["AmrDeveloper"]
4-
version = "0.42.0"
4+
version = "0.43.0"
55
edition = "2021"
66
description = "GitQL Command line interface (CLI) components"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"

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.19.0"
4+
version = "0.20.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.42.0"
4+
version = "0.43.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.41.0"
4+
version = "0.42.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.19.0"
4+
version = "0.20.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)