From 069061d00b2c914bc31398280047bb102ee98408 Mon Sep 17 00:00:00 2001 From: AmrDeveloper Date: Tue, 9 Jul 2024 14:28:41 +0200 Subject: [PATCH] feat: Publish GitQL and crates --- CHANGELOG.md | 640 ++++++++++++++++----------------- Cargo.lock | 12 +- Cargo.toml | 14 +- crates/gitql-ast/Cargo.toml | 2 +- crates/gitql-cli/Cargo.toml | 6 +- crates/gitql-engine/Cargo.toml | 4 +- crates/gitql-parser/Cargo.toml | 4 +- crates/gitql-std/Cargo.toml | 2 +- 8 files changed, 335 insertions(+), 349 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6114be04..0fb4f542 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,327 +1,313 @@ -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)* ------------------------------ - -* Fix resolving return type of function with Dynamic and depend on Variant types. -* Fix Projection check for symbols after select statement. - -Version 0.22.1 *(2024-06-12)* ------------------------------ - -* Hot fix type checker if eval expression without table. - -Version 0.22.0 *(2024-06-12)* ------------------------------ - -* Allow using column native name in condition after alias it -* Implement Slice expression for Collection `[start : end]`. -* Implement Slice expression for Collection with optional start and end. -* Fix calling function without table name. -* Improve projection columns type checker - -Version 0.21.0 *(2024-06-07)* ------------------------------ - -* Implement `bit_and` and `bit_or` Aggregation function. -* Implement Array literal and Index expression. -* Implement Index expression for Multi dimensions arrays. -* Implement Index expression and fix exception handling. -* Implement `array_length` Array function. -* Fix runtime exception handling. - -Version 0.20.0 *(2024-05-31)* ------------------------------ - -* Make `COUNT()` aggregation argument to be `Option`. -* Replace `lazy_static` crate by `std::sync::OnceLock`. -* Migrate to gix `0.63.0`. -* Fix hidden selection in group by statement. -* Implement `GROUP_CONCAT` Aggregation function. -* Catching function argument with undefined type. -* Update Regex expression implementation to not converted to call. -* Introduce `gitql-core` and `gitql-std` to allow dynamic std. -* Implement `BIN` Text function. -* Implement `bool_and` and `bool_or` aggregation functions. - -Version 0.19.1 *(2024-05-19)* ------------------------------ - -* Fix Count aggregation function parameter type. - -Version 0.19.0 *(2024-05-18)* ------------------------------ - -* Improve the structure of the parser. -* Support string literal with single quotes. -* Improve the Type checker to allow mix of optional and varargs parameters. -* Implement `UUID` general function. -* Implement `STR` TExt function. - -Version 0.18.0 *(2024-04-26)* ------------------------------ - -* Support unicode in the tokenizer. -* Migrate to latest chrono and make clippy happy. -* Support query branch last active date as `updated` column. -* Update `gix` version to `0.62.0`. - -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)* ------------------------------ - -* Fix Implicit casting with variant type. -* Support `DIV` and `MOD` keywords. -* Implement `REGEXP_INSTR`, `REGEXP_LIKE`, `REGEXP_REPLACE` and `REGEXP_SUBSTR` Regex function. -* Implement `DATE`, `MINUTE`, `MONTH`, `LAST_DAY` Date functions. -* Implement `WEEKOFYEAR`, `WEEKDAY`, `YEARWEEK` Date functions. -* Update `gix` version to `0.60.0`. - -Version 0.15.0 *(2024-03-01)* ------------------------------ - -* implement 'describe table_name' to show fields and types of a table. -* Add mysql like `show tables` statement to list all available tables. -* Implement `DAYOFWEEK`, `DAYOFMONTH` and `DAYOFYEAR` Date functions. -* Implement `QUARTER`, `YEAR` and `TO_DAYS` Date function. -* Implement `QUOTENAME` String function. -* Fix Parsing function without right paren at the end - -Version 0.14.0 *(2024-02-16)* ------------------------------ - -* Implement DataProvider interface to allow custom data. -* Implement Data Schema component to allow custom data schema. -* Improve `ROUND` implementation to supports decimal places. -* Implement `MOD` function. -* Implement Dynamic DataType to be calculated depending on other types. - -Version 0.13.0 *(2024-01-25)* ------------------------------ - -* Make `SING` function accept Int or Float type. -* Implement `CONCAT_WS` Text function. -* Fix Minus unary operator for f64. -* Implement exporting data as `JSON`, `CSV`. -* Implemnet `DAY` Date function -* Fix not reporting diagnostic when date or time format has number out of range. -* Perform projection operator before export as `JSON`, `CSV`. -* Fix the order of parsing prefix unary with binary expression. -* Handle passing 0 tokens to the parser. - -Version 0.12.0 *(2024-01-13)* ------------------------------ - -* Change GitQLObject structure to get more speedup and keep values sorted. -* Supports `LIMIT OFFSET` shorthand inspired by MySQL. -* Implement `HOUR` Date functions. -* Implement `STRCMP` Text Function. -* Implement `GREATEST`, `LEAST` General function. -* Implement `ISDATE` Date function. -* Optimize `in` expression in case of empty list. -* Add Support for `NOT IN` expression. -* Report error if user write un expected content after valid statement. -* Fix Date and DateTime incorrect equals #71. -* Allow `BETWEEN` to work with any type. -* Fix ArithmeticExpression expr_type if any side is float. - -Version 0.11.0 *(2023-12-29)* ------------------------------ - -* Support Assignment expressions `@name := value`. -* Allow Assignment expressions to store aggregation value. -* Allow lazy evaluate any expression that has aggregation value. -* Prevent assign aggregation value to global variable with SET statement. -* Support creating identifier using backticks. -* Support `Either` type in the type system. -* Support `Optional` type in the type system. -* Support `Varargs` type in the type system. -* Implement `ACOS`, `ATAN`, `ATN2` and `SIGN` Math functions. -* Implement `CHARINDEX` Text function. -* Implement `DAYNAME`, `MONTHNAME` Date functions. -* Update `CONCAT` Text function to accept 2 or more Text values. -* Support Aggregation `MAX`, `MIN` to work with different types. -* Support Implicit Type casting for Function arguments. -* Revamp GQLError to a new Diagnostic representation. -* Migrate to Gix v0.57.0. -* Update `CONCAT` function to work with any value type. - -Version 0.10.0 *(2023-12-08)* ------------------------------ - -* Migrate from `git2` to `gix`. -* Implement `ASIN` function. -* Implement `TAN` function. -* Use current directory as repository path if no path is passed. -* Implement `--query | -q` flat to run a single query without repl mode. -* Support receiving input from a pipe or file redirection. -* Support consuming `;` at the end of query main statement. -* Support User defined variables. -* Suppoer `:=` operator. - -Version 0.9.0 *(2023-11-25)* ------------------------------ - -* Preallocate the attributes hash with row length. -* Fix Clippy comments and setup CI for Lint and Format. -* Implement `typeof` function. -* Implement `ROUND` function. -* Make Identifiers case-insensitive. -* Support `<=>` operator. -* Implement `SIN` function. -* Implement `COS` function. -* Support Implicit casting Text to Time. -* Support Implicit casting Text to Date. -* Support Implicit casting DateTime to Text. - -Version 0.8.0 *(2023-11-10)* ------------------------------ - -* Support `GLOB` keyword. -* Support `DISTINCT` keyword. -* Make sure `SELECT *` used with specific table. -* Migrate from Prettytables-rs to comfy-table for render tables. -* Support optional Pagination with user custom page size. -* Support `<>` Operator. -* Implement `PI` function. -* Implement `FLOOR` function. - -Version 0.7.2 *(2023-10-26)* ------------------------------ - -* Support `NULL` keyword. -* Implement `ISNULL` function. -* Implement `ISNUMERIC` function. -* Handle crash for undefined symbol as argument at runtime. - -Version 0.7.1 *(2023-09-26)* ------------------------------ - -* Implement `NOW` function. -* Fix handling grouping with aggregations. -* Print Date and DateTime with formats. - -Version 0.7.0 *(2023-09-22)* ------------------------------ - -* Support `Like` Expression. -* Remote un needed Check expression. -* Support order by any expression. -* Ignore input if its empty or new line. -* Update Git2 version from `0.17.1` to `0.18.0`. -* Implement 20 Text Functions #13 by @Lilit0x and @tbro. - -Version 0.6.0 *(2023-09-06)* ------------------------------ - -* Support `<<` and `>>` overflow. -* Fix reporting error with out of index position. -* Implement `Case` expression. -* Support bang equal != for comparisons. -* Improve error message for unexpected token. -* Support negative numbers. -* Add repository path as a field for data all tables. -* Make function name case-insensitive. -* Support Text `reverse` function. -* Support Text `replicate` function. -* Support Text `ltrim`, `rtrim` function. -* Select the same field twice. -* Optimize engine to work on one repo only if table name is empty. -* Fix merging empty groups. -* Add custom error message for invalid use of `asc` and `desc`. -* Fix resolving symbols. -* Fix name alias for non symbols. -* Fix name alias for aggregation function. -* Use aggregation function after select statement. -* Don't allow using aggregation in where statement. -* Fix hidden selections. -* Alias the same name twice. -* Fix evaluate function before argument. - -Version 0.5.0 *(2023-08-23)* ------------------------------ - -* Split the project into multi crates. -* Support query from multi repositories. -* Add CLI flag to enable/disable reporting analysis. -* Report error when `WHERE` or `HAVING` condition is not boolean. -* Introduce Runtime exceptions. -* Report runtime exception for divide by zero. -* Report runtime exception for reminder by zero. -* Report runtime exception for right and left shift overflow. - -Version 0.4.1 *(2023-07-19)* ------------------------------ - -* Prevent crash and report more error messages. -* Make sure select statement is used before any other statement. -* Make sure having is used after group by expression. - -Version 0.4.0 *(2023-07-14)* ------------------------------ - -* Support hex decimal number format. -* Support binary decimal number format. -* Support octal decimal number format. -* Support Aggregations function without selecting the field. -* Support Merging group if it only select aggregations. -* Implement Aggregation functions `avg`. -* Improve render performance. -* Allow calling aggregation function with upper or lower cases. - -Version 0.3.0 *(2023-07-07)* ------------------------------ - -* Implement Aggregation functions `count`, `max`, `min`, `sum`. -* Implement insertions, deletations, file changes for diffs table. -* Remove un needed dependencies #4. -* Publish the project on crates.io. -* Create docs website. -* Support Number expression. -* Support Arithmetics operators. -* Support Bitwise operators. -* Support selecting commit id - -Version 0.2.0 *(2023-06-27)* ------------------------------ - -* Support Aggregation Functions. -* Select number of commits for each branch. -* Add column alias name. -* Add Group by statement. -* Add Having statement. -* Support order by Ascending and Descending. -* Introduce simple type system with error messages. -* Report error messages for transformations. -* Allow engine to reorder the commands. -* Print output in table format. - -Version 0.1.0 *(2023-06-16)* ------------------------------ - -* First release of GQL. +# Change Log + +## Version 0.25.0 _(2024-07-09)_ + +- Support JOIN more than two tables togther in same query. +- Handle hidden selection with multi tables. +- Support query `datetime` from diffs table. +- Implement LEFT, RIGHT, INNER and CROSS JOINS operation. +- Implement JOIN predicate using `ON` keyword. +- Simplifiy the DataProvider Design. +- Implement Bitwise `xor` operator. +- Change XOR operator to match postgresql. +- Implement `ARRAY_SHUFFLE` Array function. +- Implement `ARRAY_POSITION` Array Function. +- Implement `ARRAY_DIMS` Array Function. +- Support `Infinity` and `NaN` values. +- Support `OUTER` keyword. + +## 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)_ + +- Fix resolving return type of function with Dynamic and depend on Variant types. +- Fix Projection check for symbols after select statement. + +## Version 0.22.1 _(2024-06-12)_ + +- Hot fix type checker if eval expression without table. + +## Version 0.22.0 _(2024-06-12)_ + +- Allow using column native name in condition after alias it +- Implement Slice expression for Collection `[start : end]`. +- Implement Slice expression for Collection with optional start and end. +- Fix calling function without table name. +- Improve projection columns type checker + +## Version 0.21.0 _(2024-06-07)_ + +- Implement `bit_and` and `bit_or` Aggregation function. +- Implement Array literal and Index expression. +- Implement Index expression for Multi dimensions arrays. +- Implement Index expression and fix exception handling. +- Implement `array_length` Array function. +- Fix runtime exception handling. + +## Version 0.20.0 _(2024-05-31)_ + +- Make `COUNT()` aggregation argument to be `Option`. +- Replace `lazy_static` crate by `std::sync::OnceLock`. +- Migrate to gix `0.63.0`. +- Fix hidden selection in group by statement. +- Implement `GROUP_CONCAT` Aggregation function. +- Catching function argument with undefined type. +- Update Regex expression implementation to not converted to call. +- Introduce `gitql-core` and `gitql-std` to allow dynamic std. +- Implement `BIN` Text function. +- Implement `bool_and` and `bool_or` aggregation functions. + +## Version 0.19.1 _(2024-05-19)_ + +- Fix Count aggregation function parameter type. + +## Version 0.19.0 _(2024-05-18)_ + +- Improve the structure of the parser. +- Support string literal with single quotes. +- Improve the Type checker to allow mix of optional and varargs parameters. +- Implement `UUID` general function. +- Implement `STR` TExt function. + +## Version 0.18.0 _(2024-04-26)_ + +- Support unicode in the tokenizer. +- Migrate to latest chrono and make clippy happy. +- Support query branch last active date as `updated` column. +- Update `gix` version to `0.62.0`. + +## 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)_ + +- Fix Implicit casting with variant type. +- Support `DIV` and `MOD` keywords. +- Implement `REGEXP_INSTR`, `REGEXP_LIKE`, `REGEXP_REPLACE` and `REGEXP_SUBSTR` Regex function. +- Implement `DATE`, `MINUTE`, `MONTH`, `LAST_DAY` Date functions. +- Implement `WEEKOFYEAR`, `WEEKDAY`, `YEARWEEK` Date functions. +- Update `gix` version to `0.60.0`. + +## Version 0.15.0 _(2024-03-01)_ + +- implement 'describe table_name' to show fields and types of a table. +- Add mysql like `show tables` statement to list all available tables. +- Implement `DAYOFWEEK`, `DAYOFMONTH` and `DAYOFYEAR` Date functions. +- Implement `QUARTER`, `YEAR` and `TO_DAYS` Date function. +- Implement `QUOTENAME` String function. +- Fix Parsing function without right paren at the end + +## Version 0.14.0 _(2024-02-16)_ + +- Implement DataProvider interface to allow custom data. +- Implement Data Schema component to allow custom data schema. +- Improve `ROUND` implementation to supports decimal places. +- Implement `MOD` function. +- Implement Dynamic DataType to be calculated depending on other types. + +## Version 0.13.0 _(2024-01-25)_ + +- Make `SING` function accept Int or Float type. +- Implement `CONCAT_WS` Text function. +- Fix Minus unary operator for f64. +- Implement exporting data as `JSON`, `CSV`. +- Implemnet `DAY` Date function +- Fix not reporting diagnostic when date or time format has number out of range. +- Perform projection operator before export as `JSON`, `CSV`. +- Fix the order of parsing prefix unary with binary expression. +- Handle passing 0 tokens to the parser. + +## Version 0.12.0 _(2024-01-13)_ + +- Change GitQLObject structure to get more speedup and keep values sorted. +- Supports `LIMIT OFFSET` shorthand inspired by MySQL. +- Implement `HOUR` Date functions. +- Implement `STRCMP` Text Function. +- Implement `GREATEST`, `LEAST` General function. +- Implement `ISDATE` Date function. +- Optimize `in` expression in case of empty list. +- Add Support for `NOT IN` expression. +- Report error if user write un expected content after valid statement. +- Fix Date and DateTime incorrect equals #71. +- Allow `BETWEEN` to work with any type. +- Fix ArithmeticExpression expr_type if any side is float. + +## Version 0.11.0 _(2023-12-29)_ + +- Support Assignment expressions `@name := value`. +- Allow Assignment expressions to store aggregation value. +- Allow lazy evaluate any expression that has aggregation value. +- Prevent assign aggregation value to global variable with SET statement. +- Support creating identifier using backticks. +- Support `Either` type in the type system. +- Support `Optional` type in the type system. +- Support `Varargs` type in the type system. +- Implement `ACOS`, `ATAN`, `ATN2` and `SIGN` Math functions. +- Implement `CHARINDEX` Text function. +- Implement `DAYNAME`, `MONTHNAME` Date functions. +- Update `CONCAT` Text function to accept 2 or more Text values. +- Support Aggregation `MAX`, `MIN` to work with different types. +- Support Implicit Type casting for Function arguments. +- Revamp GQLError to a new Diagnostic representation. +- Migrate to Gix v0.57.0. +- Update `CONCAT` function to work with any value type. + +## Version 0.10.0 _(2023-12-08)_ + +- Migrate from `git2` to `gix`. +- Implement `ASIN` function. +- Implement `TAN` function. +- Use current directory as repository path if no path is passed. +- Implement `--query | -q` flat to run a single query without repl mode. +- Support receiving input from a pipe or file redirection. +- Support consuming `;` at the end of query main statement. +- Support User defined variables. +- Suppoer `:=` operator. + +## Version 0.9.0 _(2023-11-25)_ + +- Preallocate the attributes hash with row length. +- Fix Clippy comments and setup CI for Lint and Format. +- Implement `typeof` function. +- Implement `ROUND` function. +- Make Identifiers case-insensitive. +- Support `<=>` operator. +- Implement `SIN` function. +- Implement `COS` function. +- Support Implicit casting Text to Time. +- Support Implicit casting Text to Date. +- Support Implicit casting DateTime to Text. + +## Version 0.8.0 _(2023-11-10)_ + +- Support `GLOB` keyword. +- Support `DISTINCT` keyword. +- Make sure `SELECT *` used with specific table. +- Migrate from Prettytables-rs to comfy-table for render tables. +- Support optional Pagination with user custom page size. +- Support `<>` Operator. +- Implement `PI` function. +- Implement `FLOOR` function. + +## Version 0.7.2 _(2023-10-26)_ + +- Support `NULL` keyword. +- Implement `ISNULL` function. +- Implement `ISNUMERIC` function. +- Handle crash for undefined symbol as argument at runtime. + +## Version 0.7.1 _(2023-09-26)_ + +- Implement `NOW` function. +- Fix handling grouping with aggregations. +- Print Date and DateTime with formats. + +## Version 0.7.0 _(2023-09-22)_ + +- Support `Like` Expression. +- Remote un needed Check expression. +- Support order by any expression. +- Ignore input if its empty or new line. +- Update Git2 version from `0.17.1` to `0.18.0`. +- Implement 20 Text Functions #13 by @Lilit0x and @tbro. + +## Version 0.6.0 _(2023-09-06)_ + +- Support `<<` and `>>` overflow. +- Fix reporting error with out of index position. +- Implement `Case` expression. +- Support bang equal != for comparisons. +- Improve error message for unexpected token. +- Support negative numbers. +- Add repository path as a field for data all tables. +- Make function name case-insensitive. +- Support Text `reverse` function. +- Support Text `replicate` function. +- Support Text `ltrim`, `rtrim` function. +- Select the same field twice. +- Optimize engine to work on one repo only if table name is empty. +- Fix merging empty groups. +- Add custom error message for invalid use of `asc` and `desc`. +- Fix resolving symbols. +- Fix name alias for non symbols. +- Fix name alias for aggregation function. +- Use aggregation function after select statement. +- Don't allow using aggregation in where statement. +- Fix hidden selections. +- Alias the same name twice. +- Fix evaluate function before argument. + +## Version 0.5.0 _(2023-08-23)_ + +- Split the project into multi crates. +- Support query from multi repositories. +- Add CLI flag to enable/disable reporting analysis. +- Report error when `WHERE` or `HAVING` condition is not boolean. +- Introduce Runtime exceptions. +- Report runtime exception for divide by zero. +- Report runtime exception for reminder by zero. +- Report runtime exception for right and left shift overflow. + +## Version 0.4.1 _(2023-07-19)_ + +- Prevent crash and report more error messages. +- Make sure select statement is used before any other statement. +- Make sure having is used after group by expression. + +## Version 0.4.0 _(2023-07-14)_ + +- Support hex decimal number format. +- Support binary decimal number format. +- Support octal decimal number format. +- Support Aggregations function without selecting the field. +- Support Merging group if it only select aggregations. +- Implement Aggregation functions `avg`. +- Improve render performance. +- Allow calling aggregation function with upper or lower cases. + +## Version 0.3.0 _(2023-07-07)_ + +- Implement Aggregation functions `count`, `max`, `min`, `sum`. +- Implement insertions, deletations, file changes for diffs table. +- Remove un needed dependencies #4. +- Publish the project on crates.io. +- Create docs website. +- Support Number expression. +- Support Arithmetics operators. +- Support Bitwise operators. +- Support selecting commit id + +## Version 0.2.0 _(2023-06-27)_ + +- Support Aggregation Functions. +- Select number of commits for each branch. +- Add column alias name. +- Add Group by statement. +- Add Having statement. +- Support order by Ascending and Descending. +- Introduce simple type system with error messages. +- Report error messages for transformations. +- Allow engine to reorder the commands. +- Print output in table format. + +## Version 0.1.0 _(2023-06-16)_ + +- First release of GQL. diff --git a/Cargo.lock b/Cargo.lock index f8b30c82..d42877ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -552,7 +552,7 @@ dependencies = [ [[package]] name = "gitql" -version = "0.24.0" +version = "0.25.0" dependencies = [ "atty", "criterion", @@ -567,14 +567,14 @@ dependencies = [ [[package]] name = "gitql-ast" -version = "0.21.0" +version = "0.22.0" dependencies = [ "gitql-core", ] [[package]] name = "gitql-cli" -version = "0.24.0" +version = "0.25.0" dependencies = [ "comfy-table", "gitql-ast", @@ -594,7 +594,7 @@ dependencies = [ [[package]] name = "gitql-engine" -version = "0.24.0" +version = "0.25.0" dependencies = [ "chrono", "gitql-ast", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "gitql-parser" -version = "0.23.0" +version = "0.24.0" dependencies = [ "gitql-ast", "gitql-core", @@ -612,7 +612,7 @@ dependencies = [ [[package]] name = "gitql-std" -version = "0.2.0" +version = "0.3.0" dependencies = [ "chrono", "gitql-core", diff --git a/Cargo.toml b/Cargo.toml index a34dc561..1f33372f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql" authors = ["AmrDeveloper"] -version = "0.24.0" +version = "0.25.0" edition = "2021" description = "A SQL like query language to perform queries on .git files" license = "MIT" @@ -27,11 +27,11 @@ 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.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" } +gitql-std = { path = "./crates/gitql-std", version = "0.3.0" } +gitql-ast = { path = "./crates/gitql-ast", version = "0.22.0" } +gitql-parser = { path = "./crates/gitql-parser", version = "0.24.0" } +gitql-engine = { path = "./crates/gitql-engine", version = "0.25.0" } +gitql-cli = { path = "./crates/gitql-cli", version = "0.25.0" } gix = { workspace = true, features = ["blob-diff", "max-performance"] } atty = "0.2.14" @@ -42,4 +42,4 @@ criterion = "0.5.1" # Run individual benchmarks like `cargo bench -- ` e.g. `cargo bench -- tokenizer` [[bench]] name = "benchmarks" -harness = false +harness = false \ No newline at end of file diff --git a/crates/gitql-ast/Cargo.toml b/crates/gitql-ast/Cargo.toml index 504d5c74..d0085aa1 100644 --- a/crates/gitql-ast/Cargo.toml +++ b/crates/gitql-ast/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-ast" authors = ["AmrDeveloper"] -version = "0.21.0" +version = "0.22.0" edition = "2021" description = "GitQL Abstract syntax tree (AST)" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-ast" diff --git a/crates/gitql-cli/Cargo.toml b/crates/gitql-cli/Cargo.toml index 6662d7af..e7b50840 100644 --- a/crates/gitql-cli/Cargo.toml +++ b/crates/gitql-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-cli" authors = ["AmrDeveloper"] -version = "0.24.0" +version = "0.25.0" edition = "2021" description = "GitQL Command line interface (CLI) components" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli" @@ -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.21.0" } -gitql-parser = { path = "../gitql-parser", version = "0.23.0" } +gitql-ast = { path = "../gitql-ast", version = "0.22.0" } +gitql-parser = { path = "../gitql-parser", version = "0.24.0" } comfy-table = "7.1.0" termcolor = "1.4.1" diff --git a/crates/gitql-engine/Cargo.toml b/crates/gitql-engine/Cargo.toml index f78025d6..b4f7968b 100644 --- a/crates/gitql-engine/Cargo.toml +++ b/crates/gitql-engine/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-engine" authors = ["AmrDeveloper"] -version = "0.24.0" +version = "0.25.0" edition = "2021" description = "GitQL Engine" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-engine" @@ -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.21.0" } +gitql-ast = { path = "../gitql-ast", version = "0.22.0" } regex = "1.10.4" chrono = "0.4.38" diff --git a/crates/gitql-parser/Cargo.toml b/crates/gitql-parser/Cargo.toml index dbc4c685..adf866fe 100644 --- a/crates/gitql-parser/Cargo.toml +++ b/crates/gitql-parser/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-parser" authors = ["AmrDeveloper"] -version = "0.23.0" +version = "0.24.0" edition = "2021" description = "GitQL parser" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-parser" @@ -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.21.0" } +gitql-ast = { path = "../gitql-ast", version = "0.22.0" } diff --git a/crates/gitql-std/Cargo.toml b/crates/gitql-std/Cargo.toml index 5057f426..139fc202 100644 --- a/crates/gitql-std/Cargo.toml +++ b/crates/gitql-std/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gitql-std" authors = ["AmrDeveloper"] -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "GitQL Standard and Aggregation functions" repository = "https://github.com/amrdeveloper/gql/tree/main/crates/gitql-cli"