Skip to content

Commit 2863c5e

Browse files
committed
Release 0.11.1
1 parent 57f071b commit 2863c5e

File tree

7 files changed

+16
-14
lines changed

7 files changed

+16
-14
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
## Unchanged
3+
## [0.11.1] - 2024-10-02
44

55
## Fixed
66

7-
- Add missing support for `filename` config.yaml property
7+
- Add missing support for `filename` config.yaml property as per 0.11.2
8+
builder specification
89

910
## [0.11.0] - 2024-09-07
1011

@@ -182,6 +183,7 @@
182183
- `sync` subcommand support to sync with latest Tinted Theming schemes
183184
- `build` subcommand to trigger theme template build
184185

186+
[0.11.1]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.11.0...v0.11.1
185187
[0.11.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.10.1...v0.11.0
186188
[0.10.1]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.10.0...v0.10.1
187189
[0.10.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.5...v0.10.0

Cargo.lock

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

THIRD_PARTY_LICENSES.md LICENSES-THIRD-PARTY.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1468,9 +1468,9 @@ END OF TERMS AND CONDITIONS
14681468
- [equivalent 1.0.1](https://github.com/cuviper/equivalent)
14691469
- [hashbrown 0.14.5](https://github.com/rust-lang/hashbrown)
14701470
- [indexmap 2.2.6](https://github.com/indexmap-rs/indexmap)
1471-
- [regex-automata 0.4.7](https://github.com/rust-lang/regex/tree/master/regex-automata)
1472-
- [regex-syntax 0.8.4](https://github.com/rust-lang/regex/tree/master/regex-syntax)
1473-
- [regex 1.10.5](https://github.com/rust-lang/regex)
1471+
- [regex-automata 0.4.8](https://github.com/rust-lang/regex/tree/master/regex-automata)
1472+
- [regex-syntax 0.8.5](https://github.com/rust-lang/regex/tree/master/regex-syntax)
1473+
- [regex 1.11.0](https://github.com/rust-lang/regex)
14741474
- [strip-ansi-escapes 0.2.0](https://github.com/luser/strip-ansi-escapes)
14751475
- [unicode-normalization 0.1.23](https://github.com/unicode-rs/unicode-normalization)
14761476

@@ -1684,7 +1684,7 @@ limitations under the License.
16841684
#### Used by
16851685

16861686
- [tinted-builder 0.7.0](https://github.com/tinted-theming/tinted-builder-rust)
1687-
- [tinted-builder-rust 0.11.0](https://github.com/tinted-theming/tinted-builder-rust)
1687+
- [tinted-builder-rust 0.11.1](https://github.com/tinted-theming/tinted-builder-rust)
16881688
- [ribboncurls 0.2.1](https://github.com/tinted-theming/ribboncurls)
16891689

16901690
```

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ information.
150150

151151
Ribboncurls is dual-licensed under the [Apache 2.0] and [MIT] licenses.
152152
For more information about the licenses of the projects used by
153-
Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
153+
Ribboncurls, have a look at [LICENSES-THIRD-PARTY.md].
154154

155155
[tinted-builder-rust]: tinted-builder-rust/README.md
156156
[tinted-builder]: tinted-builder/README.md
@@ -162,6 +162,6 @@ Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
162162
[ribboncurls]: https://github.com/tinted-theming/ribboncurls
163163
[builder specification]: https://github.com/tinted-theming/home/blob/main/builder.md
164164
[LICENSE]: LICENSE
165-
[THIRD_PARTY_LICENSES.md]: THIRD_PARTY_LICENSES.md
165+
[LICENSES-THIRD-PARTY.md]: LICENSES-THIRD-PARTY.md
166166
[CONTRIBUTING.md]: CONTRIBUTING.md
167167
[repository releases]: https://github.com/tinted-theming/tinted-builder-rust/releases/latest

tinted-builder-rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tinted-builder-rust"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition = "2021"
55
authors = ["Jamy Golden <[email protected]>", "Tinted Theming <[email protected]>"]
66
license = "MIT OR Apache-2.0"

tinted-builder-rust/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ information.
8282

8383
Ribboncurls is dual-licensed under the [Apache 2.0] and [MIT] licenses.
8484
For more information about the licenses of the projects used by
85-
Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
85+
Ribboncurls, have a look at [LICENSES-THIRD-PARTY.md].
8686

8787
[latest schemes repository]: https://github.com/tinted-theming/schemes
8888
[home repository]: https://github.com/tinted-theming/home
@@ -91,6 +91,6 @@ Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
9191
[base24]: https://github.com/tinted-theming/base24/blob/master/styling.md
9292
[builder specification]: https://github.com/tinted-theming/home/blob/main/builder.md
9393
[LICENSE]: LICENSE
94-
[THIRD_PARTY_LICENSES.md]: THIRD_PARTY_LICENSES.md
94+
[LICENSES-THIRD-PARTY.md]: LICENSES-THIRD-PARTY.md
9595
[CONTRIBUTING.md]: CONTRIBUTING.md
9696
[repository releases]: https://github.com/tinted-theming/tinted-builder-rust/releases/latest

tinted-builder/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ information.
8181

8282
Ribboncurls is dual-licensed under the [Apache 2.0] and [MIT] licenses.
8383
For more information about the licenses of the projects used by
84-
Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
84+
Ribboncurls, have a look at [LICENSES-THIRD-PARTY.md].
8585

8686
[latest schemes repository]: https://github.com/tinted-theming/schemes
8787
[home repository]: https://github.com/tinted-theming/home
@@ -91,6 +91,6 @@ Ribboncurls, have a look at [THIRD_PARTY_LICENSES.md].
9191
[ribboncurls]: https://github.com/tinted-theming/ribboncurls
9292
[builder specification]: https://github.com/tinted-theming/home/blob/main/builder.md
9393
[LICENSE]: LICENSE
94-
[THIRD_PARTY_LICENSES.md]: THIRD_PARTY_LICENSES.md
94+
[LICENSES-THIRD-PARTY.md]: LICENSES-THIRD-PARTY.md
9595
[CONTRIBUTING.md]: CONTRIBUTING.md
9696
[repository releases]: https://github.com/tinted-theming/tinted-builder-rust/releases/latest

0 commit comments

Comments
 (0)