Skip to content

Commit

Permalink
Merge pull request #35 from AaronErhardt/release-please--branches--main
Browse files Browse the repository at this point in the history
chore: release main
  • Loading branch information
AaronErhardt authored Nov 19, 2023
2 parents 7dbc0f7 + 387df15 commit 388e5fc
Show file tree
Hide file tree
Showing 13 changed files with 74 additions and 25 deletions.
14 changes: 7 additions & 7 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"tuxedo_ioctl": "0.2.3",
"tuxedo_sysfs": "0.2.3",
"tailord": "0.2.3",
"tailor_api": "0.2.3",
"tailor_client": "0.2.3",
"tailor_cli": "0.2.3",
"tuxedo_ioctl": "0.2.4",
"tuxedo_sysfs": "0.2.4",
"tailord": "0.2.4",
"tailor_api": "0.2.4",
"tailor_client": "0.2.4",
"tailor_cli": "0.3.0",
"tailor_gui": "0.2.3",
"tailor_hwcaps": "0.2.0"
"tailor_hwcaps": "0.2.1"
}
14 changes: 7 additions & 7 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions tailor_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.2.4](https://github.com/AaronErhardt/tuxedo-rs/compare/tailor_api-v0.2.3...tailor_api-v0.2.4) (2023-11-19)


### Bug Fixes

* initialise default configs as needed on startup ([0d708ad](https://github.com/AaronErhardt/tuxedo-rs/commit/0d708adab1275e07868a3821fe4e27c84bf65ae5))
2 changes: 1 addition & 1 deletion tailor_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tailor_api"
description = "API types for communication with tailord (part of tuxedo-rs)"
version = "0.2.3"
version = "0.2.4"
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
24 changes: 24 additions & 0 deletions tailor_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## [0.3.0](https://github.com/AaronErhardt/tuxedo-rs/compare/tailor-v0.2.3...tailor-v0.3.0) (2023-11-19)


### Features

* add --notify flag to cycle command ([711ba80](https://github.com/AaronErhardt/tuxedo-rs/commit/711ba80867633f94e0657212c328eb743e8cea61))
* add CLI option to cycle profiles ([0db8db6](https://github.com/AaronErhardt/tuxedo-rs/commit/0db8db6f96f803cee1c618265f4dbeb7d78ff797))
* basic tailor CLI ([7302dbb](https://github.com/AaronErhardt/tuxedo-rs/commit/7302dbbcd7f3ed2ad879318531223645122c3178))


### Bug Fixes

* initialise default configs as needed on startup ([0d708ad](https://github.com/AaronErhardt/tuxedo-rs/commit/0d708adab1275e07868a3821fe4e27c84bf65ae5))
* **tailor-cli:** reload profiles after setting ([216eb56](https://github.com/AaronErhardt/tuxedo-rs/commit/216eb569d6152781a18b18325ef45d3d64423a06))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tailor_api bumped from 0.2.1 to 0.2.4
* tailor_client bumped from 0.2.1 to 0.2.4
6 changes: 3 additions & 3 deletions tailor_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ authors = [
"Marc Jakobi <[email protected]>"
]
publish = false
version = "0.2.3"
version = "0.3.0"
rust-version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
tailor_api = {version = "0.2.1", path = "../tailor_api" }
tailor_client = {version = "0.2.1", path = "../tailor_client" }
tailor_api = {version = "0.2.4", path = "../tailor_api" }
tailor_client = {version = "0.2.4", path = "../tailor_client" }
clap = { version = "4.2.4", features = ["derive"] }
tokio = { version = "1.27", features = ["rt-multi-thread", "macros"] }
colored = "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions tailor_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tailor_client"
description = "Client library for tailord (part of tuxedo-rs)"
version = "0.2.3"
version = "0.2.4"
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
Expand All @@ -13,7 +13,7 @@ thiserror = "1"
serde_json = "1"
zbus = { version = "3", default-features = false, features = ["tokio"] }

tailor_api = {version = "0.2", path = "../tailor_api" }
tailor_api = {version = "0.2.4", path = "../tailor_api" }

[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
2 changes: 1 addition & 1 deletion tailor_hwcaps/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tailor_hwcaps"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

description = "A crate for checking the hardware capabilities on different devices"
Expand Down
9 changes: 9 additions & 0 deletions tailord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## [0.2.4](https://github.com/AaronErhardt/tuxedo-rs/compare/tailord-v0.2.3...tailord-v0.2.4) (2023-11-19)


### Bug Fixes

* initialise default configs as needed on startup ([0d708ad](https://github.com/AaronErhardt/tuxedo-rs/commit/0d708adab1275e07868a3821fe4e27c84bf65ae5))
* **tailor-cli:** reload profiles after setting ([216eb56](https://github.com/AaronErhardt/tuxedo-rs/commit/216eb569d6152781a18b18325ef45d3d64423a06))
2 changes: 1 addition & 1 deletion tailord/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tailord"
description = "Daemon handling fan, keyboard and general HW support for Tuxedo laptops (part of tuxedo-rs)"
version = "0.2.3"
version = "0.2.4"
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions tuxedo_ioctl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.2.4](https://github.com/AaronErhardt/tuxedo-rs/compare/tuxedo_ioctl-v0.2.3...tuxedo_ioctl-v0.2.4) (2023-11-19)


### Bug Fixes

* Properly set fan speed for multiple fans ([1cfbea5](https://github.com/AaronErhardt/tuxedo-rs/commit/1cfbea5b67ddd4c25971813a55de24fb3fadd5f1))
2 changes: 1 addition & 1 deletion tuxedo_ioctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tuxedo_ioctl"
description = "Tuxedo ioctl interface (part of tuxedo-rs)"
version = "0.2.3"
version = "0.2.4"
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions tuxedo_sysfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tuxedo_sysfs"
description = "Tuxedo sysfs interface (part of tuxedo-rs)"
version = "0.2.3"
version = "0.2.4"
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
Expand All @@ -14,7 +14,7 @@ tokio = { version = "1", features = ["time", "fs"] }
tokio-uring = "0.4"
tracing = "0.1"

tailor_api = { version = "0.2", path = "../tailor_api" }
tailor_api = { version = "0.2.4", path = "../tailor_api" }

[dev-dependencies]
sudo = "0.6"
Expand Down

0 comments on commit 388e5fc

Please sign in to comment.