diff --git a/CHANGELOG.md b/CHANGELOG.md index 80747f56..b39d3488 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +# [3.1.4] - 2021-03-10 ### Changed - Notify through dbus if user changes profile manually - Better help on CLI, show help only for supported items diff --git a/Cargo.lock b/Cargo.lock index 4e9447b2..f822da9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "asusctl" -version = "3.1.0" +version = "3.1.1" dependencies = [ "daemon", "gumdrop", @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "daemon" -version = "3.1.3" +version = "3.1.4" dependencies = [ "env_logger", "intel-pstate", diff --git a/asusctl/Cargo.toml b/asusctl/Cargo.toml index 22210e8e..61184197 100644 --- a/asusctl/Cargo.toml +++ b/asusctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asusctl" -version = "3.1.0" +version = "3.1.1" authors = ["Luke D Jones "] edition = "2018" diff --git a/asusctl/src/main.rs b/asusctl/src/main.rs index 1634cfc5..2d3a2ee1 100644 --- a/asusctl/src/main.rs +++ b/asusctl/src/main.rs @@ -142,6 +142,7 @@ fn main() -> Result<(), Box> { println!(" asusctl v{}", env!("CARGO_PKG_VERSION")); println!(" rog-dbus v{}", rog_dbus::VERSION); println!("rog-types v{}", rog_types::VERSION); + println!(" daemon v{}", daemon::VERSION); return Ok(()); } diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 60c1121d..bdbaac99 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daemon" -version = "3.1.3" +version = "3.1.4" license = "MPL-2.0" readme = "README.md" authors = ["Luke "]