Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
bram209 committed Oct 8, 2023
1 parent a97845a commit d191b04
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [unreleased]
## [0.1.15] - 2023-10-08

### Bug Fixes

Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ members = ["printer", "cli", "formatter"]
resolver = "2"

[workspace.package]
version = "0.1.14"
version = "0.1.15"
license = "MIT OR Apache-2.0"

[workspace.dependencies]
leptosfmt-formatter = { path = "./formatter", version = "0.1.14" }
leptosfmt-pretty-printer = { version = "0.1.6" }
leptosfmt-formatter = { path = "./formatter", version = "0.1.15" }
leptosfmt-pretty-printer = { version = "0.1.7" }

[patch.crates-io]
leptosfmt-pretty-printer = { path = "./printer" }
2 changes: 1 addition & 1 deletion formatter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "view macro formatter for the Leptos web framework"
leptosfmt-pretty-printer.workspace = true
rstml = "0.10.6"
syn = { version = "2.0.18", features = ["visit", "full", "extra-traits"] }
leptosfmt-prettyplease = { features = ["verbatim"], version = "0.2.11" }
leptosfmt-prettyplease = { features = ["verbatim"], version = "0.2.15" }
proc-macro2 = { version = "1.0.68", features = ["span-locations"] }
thiserror = "1.0.40"
crop = "0.3.0"
Expand Down
6 changes: 3 additions & 3 deletions formatter/src/formatter/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ mod tests {
</div></div>"#
);

insta::assert_snapshot!(formatted, @r#"
insta::assert_snapshot!(formatted, @r###"
<div>
<div class=format!(
"grid grid-cols-4 gap-1 {extend_tw_classes}"
"grid grid-cols-4 gap-1 {extend_tw_classes}",
)>
<button
class="hover:bg-blue-300 bg-slate-400 mt-6 rounded-md border-cyan-500 border-2 drop-shadow-lg"
Expand All @@ -274,6 +274,6 @@ mod tests {
</button>
</div>
</div>
"#);
"###);
}
}
2 changes: 1 addition & 1 deletion printer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptosfmt-pretty-printer"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
description = "leptosfmt's pretty printer based on the prettyplease crate"
license = { workspace = true }
Expand Down

0 comments on commit d191b04

Please sign in to comment.