Skip to content

Commit

Permalink
Update Gitql and Gitql crates versions for 0.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Jan 4, 2025
1 parent c939ee7 commit d7a93e5
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 22 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## Version 0.34.1 _(2025-01-04)_

- Fix implicit casting RHS with greater operator.
- Improve implicit casting when applying operators.
- Implement `DIFF_CHANGED_FILES` diff function.
- Improve calculating diff line stats.
- Introduce a new table for `diffs_changes` to perform analysis on every change.
- Fix the order of applying distinct operator plan.

## Version 0.34.0 _(2024-12-30)_

- Allow `LogicalExpr` to return dynamic type depend on operands.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "A SQL like query language to perform queries on .git files"
license = "MIT"
Expand Down Expand Up @@ -39,12 +39,12 @@ uuid = { version = "1.11.0", features = ["v4"] }
lto = true

[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.11.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.11.0" }
gitql-core = { path = "./crates/gitql-core", version = "0.12.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.12.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.31.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.33.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.34.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.34.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.34.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.35.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.35.0" }

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

Expand Down
6 changes: 3 additions & 3 deletions crates/gitql-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-cli"
authors = ["AmrDeveloper"]
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "GitQL Command line interface (CLI) components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand All @@ -10,9 +10,9 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.11.0" }
gitql-core = { path = "../gitql-core", version = "0.12.0" }
gitql-ast = { path = "../gitql-ast", version = "0.31.0" }
gitql-parser = { path = "../gitql-parser", version = "0.33.0" }
gitql-parser = { path = "../gitql-parser", version = "0.34.0" }
comfy-table = { workspace = true }
termcolor = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/gitql-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-core"
authors = ["AmrDeveloper"]
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "GitQL Core components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand Down
4 changes: 2 additions & 2 deletions crates/gitql-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-engine"
authors = ["AmrDeveloper"]
version = "0.34.0"
version = "0.35.0"
edition = "2021"
description = "GitQL Engine"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine"
Expand All @@ -10,6 +10,6 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.11.0" }
gitql-core = { path = "../gitql-core", version = "0.12.0" }
gitql-ast = { path = "../gitql-ast", version = "0.31.0" }
chrono = { workspace = true }
4 changes: 2 additions & 2 deletions crates/gitql-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-parser"
authors = ["AmrDeveloper"]
version = "0.33.0"
version = "0.34.0"
edition = "2021"
description = "GitQL parser"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser"
Expand All @@ -10,5 +10,5 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.11.0" }
gitql-core = { path = "../gitql-core", version = "0.12.0" }
gitql-ast = { path = "../gitql-ast", version = "0.31.0" }
4 changes: 2 additions & 2 deletions crates/gitql-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-std"
authors = ["AmrDeveloper"]
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "GitQL Standard and Aggregation functions"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand All @@ -10,7 +10,7 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.11.0" }
gitql-core = { path = "../gitql-core", version = "0.12.0" }
gitql-ast = { path = "../gitql-ast", version = "0.31.0" }
chrono = { workspace = true }
regex = { workspace = true }
Expand Down

0 comments on commit d7a93e5

Please sign in to comment.