diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e88f76..8b37ec8 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.32] - 2024-10-07 ### Bug Fixes @@ -196,7 +196,7 @@ All notable changes to this project will be documented in this file. - Make macro collecting functionality public - Export token types ([#24](https://github.com/bram209/leptosfmt/issues/24)) -## [leptosfmt-v0.1.4] - 2023-03-27 +## [0.1.4] - 2023-03-27 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 0a20b38..110f730 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,7 +292,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "leptosfmt" -version = "0.1.31" +version = "0.1.32" dependencies = [ "anyhow", "clap", @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "leptosfmt-formatter" -version = "0.1.31" +version = "0.1.32" dependencies = [ "crop", "indoc", @@ -324,11 +324,11 @@ dependencies = [ [[package]] name = "leptosfmt-pretty-printer" -version = "0.1.31" +version = "0.1.32" [[package]] name = "leptosfmt-prettyplease" -version = "0.1.31" +version = "0.1.32" dependencies = [ "indoc", "leptosfmt-pretty-printer", diff --git a/Cargo.toml b/Cargo.toml index 38e627f..e00d2f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,15 @@ members = ["printer", "cli", "formatter", "prettyplease"] resolver = "2" [workspace.package] -version = "0.1.31" +version = "0.1.32" license = "MIT OR Apache-2.0" [workspace.dependencies] -leptosfmt-prettyplease = { path = "./prettyplease", version = "0.1.31", features = [ +leptosfmt-prettyplease = { path = "./prettyplease", version = "0.1.32", features = [ "verbatim", ] } -leptosfmt-formatter = { path = "./formatter", version = "0.1.31" } -leptosfmt-pretty-printer = { version = "0.1.31" } +leptosfmt-formatter = { path = "./formatter", version = "0.1.32" } +leptosfmt-pretty-printer = { version = "0.1.32" } syn = { version = "2.0.59", features = ["visit", "full", "extra-traits"] } proc-macro2 = { version = "1.0.80", features = ["span-locations"] }