Bump version

This commit is contained in:
Luke D Jones
2021-03-10 16:47:22 +13:00
parent a678f54f59
commit def0259d24
5 changed files with 6 additions and 4 deletions

View File

@@ -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

4
Cargo.lock generated
View File

@@ -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",

View File

@@ -1,6 +1,6 @@
[package]
name = "asusctl"
version = "3.1.0"
version = "3.1.1"
authors = ["Luke D Jones <luke@ljones.dev>"]
edition = "2018"

View File

@@ -142,6 +142,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
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(());
}

View File

@@ -1,6 +1,6 @@
[package]
name = "daemon"
version = "3.1.3"
version = "3.1.4"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]