Skip to content

Commit

Permalink
Update GitQL Version and sdk versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Sep 7, 2024
1 parent 46796af commit afd9872
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 66 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## Version 0.27.0 _(2024-09-07)_

- Improve comparing Arrays values.
- Support Range data types.
- Implement `int4range` range function.
- Implement `daterange` range function.
- Implement `tsrange` range function.
- Simplify the dynamic types helper functions.
- Implement `ARRAY_PREPEND` function.
- Implement `ARRAY_REMOVE` function.
- Implement `ARRAY_APPEND` Array function.
- Implement `ARRAY_REPLACE` Array function.
- Update `ARRAT_POSITION` signature.
- Organize the std functions registers.
- Implement `BIT_XOR` Aggregation function.
- Implement `ARRAY_AGG` Aggregation function.
- Improve the type checker to resolve dynamic types in arguments.
- Implement Contains operator `@>` between Range and Element.

## Version 0.26.0 _(2024-08-17)_

- Fix iagnostic position when parsing undefined symbol.
Expand Down
80 changes: 37 additions & 43 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.26.0"
version = "0.27.0"
edition = "2021"
description = "A SQL like query language to perform queries on .git files"
license = "MIT"
repository = "https://github.com/amrdeveloper/gql/"
documentation = "https://github.com/amrdeveloper/gql"
readme = "README.md"
keywords = ["cli", "gql", "language", "git", "sql"]
keywords = ["gitql", "gitql-sdk", "gql", "git", "sql"]
categories = ["command-line-utilities"]
exclude = [".github/**", "docs/**", "media/**", "scripts/**"]

Expand All @@ -26,12 +26,12 @@ members = [
gix = { version = "0.64.0", default-features = false }

[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.3.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.3.1" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.23.1" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.25.1" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.26.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.26.1" }
gitql-core = { path = "./crates/gitql-core", version = "0.4.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.4.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.24.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.26.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.27.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.27.0" }
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
atty = "0.2.14"

Expand Down
4 changes: 2 additions & 2 deletions crates/gitql-ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql-ast"
authors = ["AmrDeveloper"]
version = "0.23.1"
version = "0.24.0"
edition = "2021"
description = "GitQL Abstract syntax tree (AST)"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast"
Expand All @@ -10,4 +10,4 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.3.0" }
gitql-core = { path = "../gitql-core", version = "0.4.0" }
8 changes: 4 additions & 4 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.26.1"
version = "0.27.0"
edition = "2021"
description = "GitQL Command line interface (CLI) components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand All @@ -10,8 +10,8 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.3.0" }
gitql-ast = { path = "../gitql-ast", version = "0.23.1" }
gitql-parser = { path = "../gitql-parser", version = "0.25.1" }
gitql-core = { path = "../gitql-core", version = "0.4.0" }
gitql-ast = { path = "../gitql-ast", version = "0.24.0" }
gitql-parser = { path = "../gitql-parser", version = "0.26.0" }
comfy-table = "7.1.0"
termcolor = "1.4.1"
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.3.0"
version = "0.4.0"
edition = "2021"
description = "GitQL Core components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand Down
6 changes: 3 additions & 3 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.26.0"
version = "0.27.0"
edition = "2021"
description = "GitQL Engine"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine"
Expand All @@ -10,7 +10,7 @@ keywords = ["cli", "gql", "language", "git", "sql"]
categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.3.0" }
gitql-ast = { path = "../gitql-ast", version = "0.23.1" }
gitql-core = { path = "../gitql-core", version = "0.4.0" }
gitql-ast = { path = "../gitql-ast", version = "0.24.0" }
regex = "1.10.4"
chrono = "0.4.38"
Loading

0 comments on commit afd9872

Please sign in to comment.