Skip to content

Commit 8376be7

Browse files
committed
Update versions and changelogs for 0.38.0
1 parent 56320fd commit 8376be7

File tree

9 files changed

+37
-30
lines changed

9 files changed

+37
-30
lines changed

CHANGELOG.md

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

3+
## Version 0.38.0 _(2025-04-20)_
4+
5+
- Improve Invalid table name diagnostic to suggest the closest correct name.
6+
- Support output yaml format.
7+
- Implement theme customization for table printer.
8+
- Migrate to Gix 0.71.0.
9+
310
## Version 0.37.0 _(2025-02-23)_
411

512
- Implement Group Comparison Expression `Expr <Op> <ALL | ANY | SOME> Expr`.

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.37.0"
4+
version = "0.38.0"
55
edition = "2021"
66
description = "A SQL like query language to perform queries on .git files"
77
license = "MIT"
@@ -41,12 +41,12 @@ uuid = { version = "1.16.0", features = ["v4"] }
4141
lto = true
4242

4343
[dependencies]
44-
gitql-core = { path = "./crates/gitql-core", version = "0.14.0" }
45-
gitql-std = { path = "./crates/gitql-std", version = "0.14.0" }
46-
gitql-ast = { path = "./crates/gitql-ast", version = "0.33.0" }
47-
gitql-parser = { path = "./crates/gitql-parser", version = "0.36.0" }
48-
gitql-engine = { path = "./crates/gitql-engine", version = "0.37.0" }
49-
gitql-cli = { path = "./crates/gitql-cli", version = "0.37.0" }
44+
gitql-core = { path = "./crates/gitql-core", version = "0.15.0" }
45+
gitql-std = { path = "./crates/gitql-std", version = "0.15.0" }
46+
gitql-ast = { path = "./crates/gitql-ast", version = "0.34.0" }
47+
gitql-parser = { path = "./crates/gitql-parser", version = "0.37.0" }
48+
gitql-engine = { path = "./crates/gitql-engine", version = "0.38.0" }
49+
gitql-cli = { path = "./crates/gitql-cli", version = "0.38.0" }
5050

5151
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
5252

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.33.0"
4+
version = "0.34.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.37.0"
4+
version = "0.38.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.14.0" }
14-
gitql-ast = { path = "../gitql-ast", version = "0.33.0" }
15-
gitql-parser = { path = "../gitql-parser", version = "0.36.0" }
13+
gitql-core = { path = "../gitql-core", version = "0.15.0" }
14+
gitql-ast = { path = "../gitql-ast", version = "0.34.0" }
15+
gitql-parser = { path = "../gitql-parser", version = "0.37.0" }
1616
comfy-table = { workspace = true }
1717
termcolor = { workspace = true }
1818
serde_json = { workspace = true }

crates/gitql-core/Cargo.toml

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

1212
[dependencies]
13-
gitql-ast = { path = "../gitql-ast", version = "0.33.0" }
13+
gitql-ast = { path = "../gitql-ast", version = "0.34.0" }
1414
chrono = { workspace = true }
1515
dyn-clone = { workspace = true }
1616
indexmap = { workspace = true }

crates/gitql-engine/Cargo.toml

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

1212
[dependencies]
13-
gitql-core = { path = "../gitql-core", version = "0.14.0" }
14-
gitql-ast = { path = "../gitql-ast", version = "0.33.0" }
13+
gitql-core = { path = "../gitql-core", version = "0.15.0" }
14+
gitql-ast = { path = "../gitql-ast", version = "0.34.0" }
1515
chrono = { workspace = true }

crates/gitql-parser/Cargo.toml

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

1212
[dependencies]
13-
gitql-core = { path = "../gitql-core", version = "0.14.0" }
14-
gitql-ast = { path = "../gitql-ast", version = "0.33.0" }
13+
gitql-core = { path = "../gitql-core", version = "0.15.0" }
14+
gitql-ast = { path = "../gitql-ast", version = "0.34.0" }

crates/gitql-std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gitql-std"
33
authors = ["AmrDeveloper"]
4-
version = "0.14.0"
4+
version = "0.15.0"
55
edition = "2021"
66
description = "GitQL Standard and Aggregation functions"
77
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
@@ -10,8 +10,8 @@ keywords = ["cli", "gql", "language", "git", "sql"]
1010
categories = ["command-line-utilities"]
1111

1212
[dependencies]
13-
gitql-core = { path = "../gitql-core", version = "0.14.0" }
14-
gitql-ast = { path = "../gitql-ast", version = "0.33.0" }
13+
gitql-core = { path = "../gitql-core", version = "0.15.0" }
14+
gitql-ast = { path = "../gitql-ast", version = "0.34.0" }
1515
chrono = { workspace = true }
1616
regex = { workspace = true }
1717
rand = { workspace = true }

0 commit comments

Comments
 (0)