Skip to content

Commit

Permalink
Update changelog and crates versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Apr 5, 2024
1 parent e031a5d commit 72f82d1
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 39 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

Version 0.17.0 *(2024-04-05)*
-----------------------------

* Implement `RAND` Math functions.
* Implement `REGEXPR` expression.
* Implement `NOT REGEXPR` expression.
* fix: Diagnostic position for invalid table name.
* Update `gix` version to `0.61.0`.

Version 0.16.0 *(2024-03-15)*
-----------------------------

Expand Down
44 changes: 22 additions & 22 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.16.0"
version = "0.17.0"
edition = "2021"
description = "A SQL like query language to perform queries on .git files"
license = "MIT"
Expand All @@ -21,13 +21,13 @@ members = [
]

[workspace.dependencies]
gix = { version = "0.60.0", default-features = false }
gix = { version = "0.61.0", default-features = false }

[dependencies]
gitql-ast = { path = "./crates/gitql-ast", version = "0.14.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.15.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.16.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.16.0" }
gitql-ast = { path = "./crates/gitql-ast", version = "0.15.0" }
gitql-parser = { path = "./crates/gitql-parser", version = "0.16.0" }
gitql-engine = { path = "./crates/gitql-engine", version = "0.17.0" }
gitql-cli = { path = "./crates/gitql-cli", version = "0.17.0" }
gix = { workspace = true, features = ["max-performance"] }
atty = "0.2.14"
lazy_static = "1.4.0"
6 changes: 3 additions & 3 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.14.0"
version = "0.15.0"
edition = "2021"
description = "GitQL Abstract syntax tree (AST)"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast"
Expand All @@ -10,7 +10,7 @@ license = "MIT"
[dependencies]
lazy_static = "1.4.0"
chrono = "0.4.31"
serde_json = "1.0.111"
serde_json = "1.0.115"
csv = "1.3.0"
regex = "1.10.3"
regex = "1.10.4"
rand = "0.8.5"
6 changes: 3 additions & 3 deletions crates/gitql-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "gitql-cli"
authors = ["AmrDeveloper"]
version = "0.16.0"
version = "0.17.0"
edition = "2021"
description = "GitQL Command line interface (CLI) components"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"
license = "MIT"

[dependencies]
gitql-ast = { path = "../gitql-ast", version = "0.14.0" }
gitql-parser = { path = "../gitql-parser", version = "0.15.0" }
gitql-ast = { path = "../gitql-ast", version = "0.15.0" }
gitql-parser = { path = "../gitql-parser", version = "0.16.0" }
comfy-table = "7.1.0"
termcolor = "1.4.1"
6 changes: 3 additions & 3 deletions crates/gitql-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "gitql-engine"
authors = ["AmrDeveloper"]
version = "0.16.0"
version = "0.17.0"
edition = "2021"
description = "GitQL Engine"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine"
license = "MIT"

[dependencies]
gitql-ast = { path = "../gitql-ast", version = "0.14.0" }
regex = "1.10.3"
gitql-ast = { path = "../gitql-ast", version = "0.15.0" }
regex = "1.10.4"
gix = { workspace = true, features = ["blob-diff"] }
4 changes: 2 additions & 2 deletions crates/gitql-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "gitql-parser"
authors = ["AmrDeveloper"]
version = "0.15.0"
version = "0.16.0"
edition = "2021"
description = "GitQL parser"
repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser"
license = "MIT"

[dependencies]
gitql-ast = { path = "../gitql-ast", version = "0.14.0" }
gitql-ast = { path = "../gitql-ast", version = "0.15.0" }

0 comments on commit 72f82d1

Please sign in to comment.