diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..0eade3da --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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] + +## [0.9.2] - 2020-05-04 +### Added +- Begin keeping a Changelog + +### Changed +- Internal structure changes to reduce the possibility of mutex await deadlocks when + writing to the LED endpoint \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index a1a3b538..23345d34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -678,7 +678,7 @@ dependencies = [ [[package]] name = "rog-daemon" -version = "0.9.1" +version = "0.9.2" dependencies = [ "dbus", "dbus-tokio", diff --git a/rog-core/Cargo.toml b/rog-core/Cargo.toml index 1374eb5e..e4d6a8c3 100644 --- a/rog-core/Cargo.toml +++ b/rog-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rog-daemon" -version = "0.9.1" +version = "0.9.2" license = "MPL-2.0" readme = "README.md" authors = ["Luke "] diff --git a/rog-core/src/main.rs b/rog-core/src/main.rs index ed582078..5a93eaa9 100644 --- a/rog-core/src/main.rs +++ b/rog-core/src/main.rs @@ -7,7 +7,7 @@ use rog_aura::{ AuraDbusWriter, LED_MSG_LEN, }; -static VERSION: &'static str = "0.9.1"; +static VERSION: &'static str = "0.9.2"; #[derive(Debug, Options)] struct CLIStart {