diff --git a/CHANGELOG.md b/CHANGELOG.md index 417e86a..31fdfa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ # Changelog +## 0.2.0 + +Released on: 2024-09-08 + +- Implement a built-in SQL formatter using the `sqlformat-rs` crate +- Add support for two more external SQL formatters: + [sqlfluff](https://sqlfluff.com/) and + [sql-formatter](https://github.com/sql-formatter-org/sql-formatter). +- Update rust toolchain to version 1.80.1 in github workflows + ## 0.1.1 +Released on: 2024-09-07 + - Functionality wise there's no change since `0.1.0` - Upgraded rust toolchain for test jobs and added workflow for publishing release artifacts on github (for x86 linux and MacOS) diff --git a/Cargo.lock b/Cargo.lock index 35a6591..1ca16ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -587,7 +587,7 @@ dependencies = [ [[package]] name = "tapestry" -version = "0.1.1" +version = "0.2.0" dependencies = [ "clap", "comfy-table", diff --git a/Cargo.toml b/Cargo.toml index 712c17b..7743b8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tapestry" -version = "0.1.1" +version = "0.2.0" edition = "2021" rust-version = "1.70.0"