Skip to content

Commit

Permalink
Release for lib 0.6.0 and cli 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Aug 31, 2024
1 parent 9305189 commit f6ba8ff
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 15 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.10.0] - 2024-08-28

## Changed

Expand Down Expand Up @@ -161,6 +161,8 @@
- `sync` subcommand support to sync with latest Tinted Theming schemes
- `build` subcommand to trigger theme template build

[0.10.0]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.5...v0.10.0
[0.9.5]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.3...v0.9.5
[0.9.4]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/tinted-theming/tinted-builder-rust/compare/v0.9.1...v0.9.2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

49 changes: 41 additions & 8 deletions THIRD_PARTY_LICENSES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This page lists the licenses of the projects used in cargo-about.
## Overview of licenses

- Apache License 2.0 (41)
- MIT License (8)
- MIT License (9)
- Mozilla Public License 2.0 (1)
- Unicode License Agreement - Data Files and Software (2016) (1)

Expand Down Expand Up @@ -1270,12 +1270,12 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
- [proc-macro2 1.0.85](https://github.com/dtolnay/proc-macro2)
- [quote 1.0.36](https://github.com/dtolnay/quote)
- [ryu 1.0.18](https://github.com/dtolnay/ryu)
- [serde 1.0.203](https://github.com/serde-rs/serde)
- [serde_derive 1.0.203](https://github.com/serde-rs/serde)
- [serde 1.0.206](https://github.com/serde-rs/serde)
- [serde_derive 1.0.206](https://github.com/serde-rs/serde)
- [serde_yaml 0.9.34+deprecated](https://github.com/dtolnay/serde-yaml)
- [syn 2.0.66](https://github.com/dtolnay/syn)
- [thiserror-impl 1.0.61](https://github.com/dtolnay/thiserror)
- [thiserror 1.0.61](https://github.com/dtolnay/thiserror)
- [thiserror-impl 1.0.63](https://github.com/dtolnay/thiserror)
- [thiserror 1.0.63](https://github.com/dtolnay/thiserror)
- [unicode-ident 1.0.12](https://github.com/dtolnay/unicode-ident)
- [utf8parse 0.2.2](https://github.com/alacritty/vte)
- [vte 0.11.1](https://github.com/alacritty/vte)
Expand Down Expand Up @@ -1683,9 +1683,9 @@ limitations under the License.

#### Used by

- [tinted-builder 0.3.0](https://github.com/tinted-theming/tinted-builder-rust)
- [tinted-builder-rust 0.6.0](https://github.com/tinted-theming/tinted-builder-rust)
- [ribboncurls 0.2.0](https://github.com/tinted-theming/ribboncurls)
- [tinted-builder 0.6.0](https://github.com/tinted-theming/tinted-builder-rust)
- [tinted-builder-rust 0.10.0](https://github.com/tinted-theming/tinted-builder-rust)
- [ribboncurls 0.2.1](https://github.com/tinted-theming/ribboncurls)

```
Apache License
Expand Down Expand Up @@ -1915,6 +1915,39 @@ SOFTWARE.

#### Used by

- [quick-xml 0.36.1](https://github.com/tafia/quick-xml)

```
The MIT License (MIT)
Copyright (c) 2016 Johann Tuffe
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```

### MIT License

#### Used by

- [aho-corasick 1.1.3](https://github.com/BurntSushi/aho-corasick)
- [memchr 2.7.2](https://github.com/BurntSushi/memchr)

Expand Down
4 changes: 2 additions & 2 deletions tinted-builder-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tinted-builder-rust"
version = "0.9.5"
version = "0.10.0"
edition = "2021"
authors = ["Jamy Golden <code@jamygolden.com>", "Tinted Theming <tintedtheming@proton.me>"]
license = "MIT OR Apache-2.0"
Expand All @@ -24,7 +24,7 @@ strip-ansi-escapes = "0.2.0"

[dependencies.tinted-builder]
path = "../tinted-builder"
version = "0.5.1"
version = "0.6.0"

[[bin]]
name = "tinted-builder-rust"
Expand Down
2 changes: 1 addition & 1 deletion tinted-builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.6.0 - 2024-08-28

## Added

Expand Down
2 changes: 1 addition & 1 deletion tinted-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tinted-builder"
description = "A Tinted Theming template builder which uses yaml color schemes to generate theme files."
version = "0.5.1"
version = "0.6.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit f6ba8ff

Please sign in to comment.