diff --git a/CHANGELOG.md b/CHANGELOG.md index f388ca7..ce56836 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.20] - 2024-07-23 ### Bug Fixes @@ -167,7 +167,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 21b7791..cad6e46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,7 +292,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "leptosfmt" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "clap", @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "leptosfmt-formatter" -version = "0.1.18" +version = "0.1.19" dependencies = [ "crop", "indoc", @@ -324,11 +324,11 @@ dependencies = [ [[package]] name = "leptosfmt-pretty-printer" -version = "0.1.18" +version = "0.1.19" [[package]] name = "leptosfmt-prettyplease" -version = "0.1.18" +version = "0.1.19" dependencies = [ "indoc", "leptosfmt-pretty-printer", diff --git a/Cargo.toml b/Cargo.toml index fb7d45f..c1c76e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,15 @@ members = ["printer", "cli", "formatter", "prettyplease"] resolver = "2" [workspace.package] -version = "0.1.18" +version = "0.1.20" license = "MIT OR Apache-2.0" [workspace.dependencies] -leptosfmt-prettyplease = { path = "./prettyplease", version = "0.1.18", features = [ +leptosfmt-prettyplease = { path = "./prettyplease", version = "0.1.20", features = [ "verbatim", ] } -leptosfmt-formatter = { path = "./formatter", version = "0.1.18" } -leptosfmt-pretty-printer = { version = "0.1.18" } +leptosfmt-formatter = { path = "./formatter", version = "0.1.20" } +leptosfmt-pretty-printer = { version = "0.1.20" } syn = { version = "2.0.59", features = ["visit", "full", "extra-traits"] } proc-macro2 = { version = "1.0.80", features = ["span-locations"] }