diff --git a/Cargo.lock b/Cargo.lock index f597e748..ccb56d36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -684,7 +684,7 @@ dependencies = [ [[package]] name = "rog-daemon" -version = "0.9.6" +version = "0.9.8" dependencies = [ "dbus", "dbus-tokio", diff --git a/debian/changelog b/debian/changelog index 88978d32..8c4106f8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +rog-core (0.9.8) focal; urgency=medium + + * Fix fan-mode cli help + + -- Luke Jones Sat, 23 May 2020 18:08:18 +1200 + rog-core (0.9.7) focal; urgency=medium * Start differentiating between models using the 0x1866 USB device diff --git a/rog-core/Cargo.toml b/rog-core/Cargo.toml index 2faa2a4c..f9f21e3d 100644 --- a/rog-core/Cargo.toml +++ b/rog-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog-daemon" -version = "0.9.6" +version = "0.9.8" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] @@ -44,4 +44,4 @@ intel-pstate = "^0.2.1" uhid-virt = "^0.0.4" #keycode = "0.3" -thiserror = "^1.0.15" \ No newline at end of file +thiserror = "^1.0.15" diff --git a/rog-core/src/main.rs b/rog-core/src/main.rs index a8bf279e..183f5512 100644 --- a/rog-core/src/main.rs +++ b/rog-core/src/main.rs @@ -8,7 +8,7 @@ use rog_aura::{ AuraDbusWriter, LED_MSG_LEN, }; -static VERSION: &'static str = "0.9.7"; +static VERSION: &'static str = "0.9.8"; #[derive(Debug, Options)] struct CLIStart { @@ -20,7 +20,7 @@ struct CLIStart { daemon: bool, #[options(meta = "VAL", help = "")] bright: Option, - #[options(meta = "FAN", help = "")] + #[options(meta = "FAN", help = "")] fan_mode: Option, #[options(command)] command: Option,