Skip to content

Commit ecedf4c

Browse files
committed
chore: Release
1 parent c13542b commit ecedf4c

File tree

6 files changed

+23
-22
lines changed

6 files changed

+23
-22
lines changed

CHANGELOG.md

+2-2
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.18] - 2023-12-22
66

77
### Bug Fixes
88

@@ -139,7 +139,7 @@ All notable changes to this project will be documented in this file.
139139
- Make macro collecting functionality public
140140
- Export token types ([#24](https://github.com/bram209/leptosfmt/issues/24))
141141

142-
## [leptosfmt-v0.1.4] - 2023-03-27
142+
## [0.1.4] - 2023-03-27
143143

144144
### Bug Fixes
145145

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.17"
6+
version = "0.1.18"
77
license = "MIT OR Apache-2.0"
88

99
[workspace.dependencies]
10-
leptosfmt-formatter = { path = "./formatter", version = "0.1.17" }
11-
leptosfmt-pretty-printer = { version = "0.1.7" }
10+
leptosfmt-formatter = { path = "./formatter", version = "0.1.18" }
11+
leptosfmt-pretty-printer = { version = "0.1.8" }
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.15" }
14+
leptosfmt-prettyplease = { features = ["verbatim"], version = "0.2.16" }
1515
proc-macro2 = { version = "1.0.68", features = ["span-locations"] }
1616
thiserror = "1.0.40"
1717
crop = "0.3.0"

formatter/src/formatter/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,4 @@ impl<'a> Formatter<'a> {
184184
self.line_offset = Some(line_index);
185185
}
186186
}
187+

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.7"
3+
version = "0.1.8"
44
edition = "2021"
55
description = "leptosfmt's pretty printer based on the prettyplease crate"
66
license = { workspace = true }

0 commit comments

Comments
 (0)