diff --git a/CHANGELOG.md b/CHANGELOG.md index 22d62f0..541e375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [unreleased] +## [0.1.13] - 2023-08-27 ### Bug Fixes @@ -13,6 +13,10 @@ All notable changes to this project will be documented in this file. - Add clarification about the usage of non-doc comments ([#70](https://github.com/bram209/leptosfmt/issues/70)) +### Features + +- Add check mode ([#72](https://github.com/bram209/leptosfmt/issues/72)) + ## [0.1.12] - 2023-07-31 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 0ad6d61..ce65a21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -320,7 +320,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "leptosfmt" -version = "0.1.12" +version = "0.1.13" dependencies = [ "anyhow", "clap", @@ -334,7 +334,7 @@ dependencies = [ [[package]] name = "leptosfmt-formatter" -version = "0.1.12" +version = "0.1.13" dependencies = [ "crop", "indoc", diff --git a/Cargo.toml b/Cargo.toml index 0ea444a..08aac72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,9 @@ members = ["printer", "cli", "formatter"] resolver = "2" [workspace.package] -version = "0.1.12" +version = "0.1.13" license = "MIT OR Apache-2.0" [workspace.dependencies] -leptosfmt-formatter = { path = "./formatter", version = "0.1.12" } +leptosfmt-formatter = { path = "./formatter", version = "0.1.13" } leptosfmt-pretty-printer = { version = "0.1.6" }