Add changelog, version bump

This commit is contained in:
Luke
2020-05-04 13:18:02 +12:00
parent 89c868ce95
commit 0350b64efc
4 changed files with 18 additions and 3 deletions

15
CHANGELOG.md Normal file
View File

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

2
Cargo.lock generated
View File

@@ -678,7 +678,7 @@ dependencies = [
[[package]]
name = "rog-daemon"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"dbus",
"dbus-tokio",

View File

@@ -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 <luke@ljones.dev>"]

View File

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