Skip to content

Commit 4f5ab5d

Browse files
committed
Upgrade to latest ribboncurls version fixing an escape bug
1 parent 503d964 commit 4f5ab5d

File tree

8 files changed

+22
-14
lines changed

8 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.6.1] - 2024-06-22
44

55
### Changed
66

@@ -83,6 +83,7 @@
8383
- `sync` subcommand support to sync with latest Tinted Theming schemes
8484
- `build` subcommand to trigger theme template build
8585

86+
[0.6.1]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.6.0...v0.6.1
8687
[0.6.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.5.0...v0.6.0
8788
[0.5.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.4.0...v0.5.0
8889
[0.4.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.3.0...v0.4.0

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tinted-builder-rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tinted-builder-rust"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
authors = ["Jamy Golden <[email protected]>", "Tinted Theming <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ strip-ansi-escapes = "0.2.0"
2424

2525
[dependencies.tinted-builder]
2626
path = "../tinted-builder"
27-
version = "0.4.3"
27+
version = "0.4.4"
2828

2929
[[bin]]
3030
name = "tinted-builder-rust"

tinted-builder-rust/tests/fixtures/rendered/base16-mixed-silk-light.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ variant: light
44
slug: silk-light
55
slug_underscored: silk_light
66
description:
7-
author: Gabriel Fontes (https://github.com/Misterio77)
8-
author-escaped: Gabriel Fontes (https://github.com/Misterio77)
7+
author: Gabriel Fontes ('https://github.com/Misterio77')
8+
author-escaped: Gabriel Fontes (&#39;https://github.com/Misterio77&#39;)
99
is light: true
1010
is dark: false
1111

tinted-builder-rust/tests/fixtures/rendered/base16-silk-light.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ variant: light
44
slug: silk-light
55
slug_underscored: silk_light
66
description:
7-
author: Gabriel Fontes (https://github.com/Misterio77)
8-
author-escaped: Gabriel Fontes (https://github.com/Misterio77)
7+
author: Gabriel Fontes ('https://github.com/Misterio77')
8+
author-escaped: Gabriel Fontes (&#39;https://github.com/Misterio77&#39;)
99
is light: true
1010
is dark: false
1111

tinted-builder-rust/tests/fixtures/schemes/base16/silk-light.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
system: "base16"
22
name: "Silk Light"
33
slug: "siłk light"
4-
author: "Gabriel Fontes (https://github.com/Misterio77)"
4+
author: "Gabriel Fontes ('https://github.com/Misterio77')"
55
variant: "light"
66
palette:
77
base00: "E9F1EF"

tinted-builder/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.4.4 - 2024-06-22
4+
5+
## Fixed
6+
7+
- Fix bug where single quote is not escaped when rendering escaped
8+
variables
9+
310
## 0.4.3 - 2024-06-18
411

512
## Fixed

tinted-builder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tinted-builder"
33
description = "A Tinted Theming template builder which uses yaml color schemes to generate theme files."
4-
version = "0.4.3"
4+
version = "0.4.4"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -17,7 +17,7 @@ anyhow = "1.0.80"
1717
clap = "4.5.2"
1818
dirs = "5.0.1"
1919
regex = "1.10.4"
20-
ribboncurls = "0.2.0"
20+
ribboncurls = "0.2.1"
2121
serde = { version = "1.0.197", features = ["derive"] }
2222
serde_yaml = "0.9.32"
2323
unicode-normalization = "0.1.23"

0 commit comments

Comments
 (0)