diff --git a/CHANGELOG.md b/CHANGELOG.md index 7478e16..3667d63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +Version 0.8.0 *(2024-09-09)* +----------------------------- + +* Fix the provider when number of tables is zero. +* Update GitQL SDK to 0.27.0. + Version 0.7.0 *(2024-08-4)* ----------------------------- diff --git a/Cargo.lock b/Cargo.lock index 4c5bcb2..3d12ca6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,7 +153,7 @@ dependencies = [ [[package]] name = "fileql" -version = "0.7.0" +version = "0.8.0" dependencies = [ "atty", "gitql-ast", diff --git a/Cargo.toml b/Cargo.toml index 764ec04..346f26c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fileql" authors = ["AmrDeveloper"] -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "A tool to run SQL-like query on local files using GitQL SDK" license = "MIT" @@ -19,4 +19,4 @@ gitql-cli = "0.27.0" gitql-ast = "0.24.0" gitql-parser = "0.26.0" gitql-engine = "0.27.0" -atty = "0.2.14" \ No newline at end of file +atty = "0.2.14"