diff --git a/CHANGELOG.md b/CHANGELOG.md index 7da5ce4..9fc8032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### Version 0.2.0 +- 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 + ### Version 0.1.8 - Remove regex dependency diff --git a/Cargo.toml b/Cargo.toml index 77eb522..4db2486 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlformat" -version = "0.1.8" +version = "0.2.0" authors = ["Josh Holmer "] edition = "2021" license = "MIT OR Apache-2.0"