Skip to content

Commit d191b04

Browse files
committed
chore: Release
1 parent a97845a commit d191b04

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## [unreleased]
5+
## [0.1.15] - 2023-10-08
66

77
### Bug Fixes
88

Cargo.lock

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ members = ["printer", "cli", "formatter"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.1.14"
6+
version = "0.1.15"
77
license = "MIT OR Apache-2.0"
88

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

1313
[patch.crates-io]
1414
leptosfmt-pretty-printer = { path = "./printer" }

formatter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "view macro formatter for the Leptos web framework"
1111
leptosfmt-pretty-printer.workspace = true
1212
rstml = "0.10.6"
1313
syn = { version = "2.0.18", features = ["visit", "full", "extra-traits"] }
14-
leptosfmt-prettyplease = { features = ["verbatim"], version = "0.2.11" }
14+
leptosfmt-prettyplease = { features = ["verbatim"], version = "0.2.15" }
1515
proc-macro2 = { version = "1.0.68", features = ["span-locations"] }
1616
thiserror = "1.0.40"
1717
crop = "0.3.0"

formatter/src/formatter/expr.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ mod tests {
249249
</div></div>"#
250250
);
251251

252-
insta::assert_snapshot!(formatted, @r#"
252+
insta::assert_snapshot!(formatted, @r###"
253253
<div>
254254
<div class=format!(
255-
"grid grid-cols-4 gap-1 {extend_tw_classes}"
255+
"grid grid-cols-4 gap-1 {extend_tw_classes}",
256256
)>
257257
<button
258258
class="hover:bg-blue-300 bg-slate-400 mt-6 rounded-md border-cyan-500 border-2 drop-shadow-lg"
@@ -274,6 +274,6 @@ mod tests {
274274
</button>
275275
</div>
276276
</div>
277-
"#);
277+
"###);
278278
}
279279
}

printer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptosfmt-pretty-printer"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2021"
55
description = "leptosfmt's pretty printer based on the prettyplease crate"
66
license = { workspace = true }

0 commit comments

Comments
 (0)