Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release lib 0.6.0 and cli 0.10.0 #10

Merged
merged 2 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 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 All @@ -9,6 +9,16 @@
- Breaking change: Use `SchemeSystem` and `SchemeVariant` enums for
scheme `system` and `variant` properties respectively instead of using
string values
- Schemes are not required to be in directories named after the scheme
`system`. Any `.yaml` or `.yml` scheme file will be collected into the
scheme system based on the `system` property defined in the scheme
file. Current supported systems are `base16` and `base24`

## Added

- Support for `0.11.1` Tinted Theming builder specification. Dotfile
(`.*.yaml` and `.*.yml`) will be ignored
- Documentation for public operation functions

## Removed

Expand Down Expand Up @@ -151,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.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Crates.io](https://img.shields.io/crates/v/tinted-builder-rust.svg)](https://crates.io/crates/tinted-builder-rust)
[![Tests](https://github.com/tinted-theming/tinted-builder-rust/actions/workflows/ci.yml/badge.svg)](https://github.com/tinted-theming/tinted-builder-rust/actions/workflows/ci.yml)

A builder for [base16] and [base24] templates using the `0.11.0` [builder
A builder for [base16] and [base24] templates using the `0.11.1` [builder
specification].

This repo contains a command-line tool, [tinted-builder-rust], to build
Expand Down Expand Up @@ -75,7 +75,7 @@ The following is a table of the available subcommands for the CLI tool (tinted-b

## Builder specification

tinted-builder-rust implements the `0.11.0` [builder specification]. This
tinted-builder-rust implements the `0.11.1` [builder specification]. This
specification details the scheme yaml format or schema as well as the
variables the builder should provide when rendering template mustache
file. Have a look at the [builder specification] document for more
Expand All @@ -85,7 +85,7 @@ details.

This library exposes a `Scheme` and `Template` struct which you can
use to generate your own themes using [base16] and [base24] templates and
`0.11.0` compliant base16 and base24 scheme files.
`0.11.1` compliant base16 and base24 scheme files.

Internally tinted-builder-rust uses [ribboncurls] to render the templates.

Expand Down Expand Up @@ -139,7 +139,7 @@ The `Template` struct simply sets the content provided to it via
`Template::new`.

`template.render_to_file(&scheme)` takes the scheme and generates the
variables defined in the `0.11.0` [builder specification].
variables defined in the `0.11.1` [builder specification].

## Contributing

Expand Down
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
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: 'Build all the schemes for a base16 or tinted repo'

runs:
using: 'docker'
image: 'docker://ghcr.io/tinted-theming/tinted-builder-rust:v0.9.5'
image: 'docker://ghcr.io/tinted-theming/tinted-builder-rust:v0.10.0'
args:
- build
- .
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
6 changes: 3 additions & 3 deletions tinted-builder-rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
[![Crates.io](https://img.shields.io/crates/v/tinted-builder-rust.svg)](https://crates.io/crates/tinted-builder-rust)
[![Tests](https://github.com/tinted-theming/tinted-builder-rust/actions/workflows/ci.yml/badge.svg)](https://github.com/tinted-theming/tinted-builder-rust/actions/workflows/ci.yml)

A builder for [base16] and [base24] templates using the `0.11.0` [builder
specification].
A builder for [base16] and [base24] templates using the `0.11.1`
[builder specification].

This crate contains a command-line tool to build base16 and base24
templates. It is also a library crate which you can use to directly
Expand Down Expand Up @@ -67,7 +67,7 @@ The following is a table of the available subcommands for the CLI tool (tinted-b

## Builder specification

tinted-builder-rust implements the `0.11.0` [builder specification]. This
tinted-builder-rust implements the `0.11.1` [builder specification]. This
specification details the scheme yaml format or schema as well as the
variables the builder should provide when rendering template mustache
file. Have a look at the [builder specification] document for more
Expand Down
Loading
Loading