From 199715a7e4f531ee17ae15cd1c354aafab8d223b Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Mon, 4 Sep 2023 07:25:26 -0400 Subject: [PATCH] Version 0.2.2 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49c024c..c597f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### Version 0.2.2 + +- Fix a performance issue where the tokenizer would run in O^2 time [#24](https://github.com/shssoichiro/sqlformat-rs/pull/24) + ### Version 0.2.1 - Fix extra spaces inside of scientific notation [#16](https://github.com/shssoichiro/sqlformat-rs/pull/16) @@ -9,7 +13,7 @@ - Fix extra spaces in string escaping [#13](https://github.com/shssoichiro/sqlformat-rs/pull/13) - Fix panic on overflowing integer [#14](https://github.com/shssoichiro/sqlformat-rs/pull/14) - Bump Rust edition to 2021 - - This is technically a breaking change as it bumps the minimum Rust version to 1.56 + - This is technically a breaking change as it bumps the minimum Rust version to 1.56 ### Version 0.1.8 diff --git a/Cargo.toml b/Cargo.toml index 994017c..18c86a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlformat" -version = "0.2.1" +version = "0.2.2" authors = ["Josh Holmer "] edition = "2021" rust-version = "1.56"