Skip to content

Commit

Permalink
Update gitql SDK versions and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Jun 21, 2024
1 parent bd8caac commit 88fcba0
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 19 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Change Log
==========

Version 0.24.0 *(2024-06-21)*
-----------------------------

* Fix passing global variable value to function call.
* Support slice with default start and end and optimize it.
* Implement PostgreSQL `DISTINCT ON` operator.
* Support `GROUP BY` one or more expression.
* Improve the parse and performance of `DESCRIBE` query.
* Support PostgreSQL boolean values literals.
* Support query `parents_count` of commit.
* Support query `committer_name` and `committer_email` of commit.
* Rename `name` and `email` to `author_name` and `author_email` of commit.
* Support `commit_conventional` function in gitql application.
* Support implicit casting in `WHERE` statement.
* Support implicit casting in `HAVING` statement.

Version 0.23.0 *(2024-06-13)*
-----------------------------

Expand Down Expand Up @@ -308,4 +324,4 @@ Version 0.2.0 *(2023-06-27)*
Version 0.1.0 *(2023-06-16)*
-----------------------------

* First release of GQL.
* First release of GQL.
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitql"
authors = ["AmrDeveloper"]
version = "0.23.0"
version = "0.24.0"
edition = "2021"
description = "A SQL like query language to perform queries on .git files"
license = "MIT"
Expand All @@ -28,9 +28,9 @@ gix = { version = "0.63.0", default-features = false }
[dependencies]
gitql-core = { path = "./crates/gitql-core", version = "0.2.0" }
gitql-std = { path = "./crates/gitql-std", version = "0.2.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.20.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.22.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.23.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.23.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.21.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.23.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.24.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.24.0" }
gix = { workspace = true, features = ["blob-diff", "max-performance"] }
atty = "0.2.14"
2 changes: 1 addition & 1 deletion 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.20.0"
version = "0.21.0"
edition = "2021"
description = "GitQL Abstract syntax tree (AST)"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast"
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.23.0"
version = "0.24.0"
edition = "2021"
description = "GitQL Command line interface (CLI) components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
Expand All @@ -11,7 +11,7 @@ categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.2.0" }
gitql-ast = { path = "../gitql-ast", version = "0.20.0" }
gitql-parser = { path = "../gitql-parser", version = "0.22.0" }
gitql-ast = { path = "../gitql-ast", version = "0.21.0" }
gitql-parser = { path = "../gitql-parser", version = "0.23.0" }
comfy-table = "7.1.0"
termcolor = "1.4.1"
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.23.0"
version = "0.24.0"
edition = "2021"
description = "GitQL Engine"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine"
Expand All @@ -11,6 +11,6 @@ categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.2.0" }
gitql-ast = { path = "../gitql-ast", version = "0.20.0" }
gitql-ast = { path = "../gitql-ast", version = "0.21.0" }
regex = "1.10.4"
chrono = "0.4.38"
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.22.0"
version = "0.23.0"
edition = "2021"
description = "GitQL parser"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser"
Expand All @@ -11,4 +11,4 @@ categories = ["command-line-utilities"]

[dependencies]
gitql-core = { path = "../gitql-core", version = "0.2.0" }
gitql-ast = { path = "../gitql-ast", version = "0.20.0" }
gitql-ast = { path = "../gitql-ast", version = "0.21.0" }

0 comments on commit 88fcba0

Please sign in to comment.