diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a9f65a..0f918a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. +## [0.1.7] - 2019-07-30 +- Refine dropped session handling +- Add a flag (`LIBRESPOT_RATE_RESAMPLE`) to allow resampling with ALSA +- Refactor Volume control, allow for a fixed volume option + ## [0.1.6] - 2019-04-29 - Fix high CPU usage diff --git a/Cargo.lock b/Cargo.lock index 07fb74f..b4fa7c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1946,7 +1946,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "vollibrespot" -version = "0.1.6" +version = "0.1.7" dependencies = [ "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index bf9afaa..b5a1b5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vollibrespot" -version = "0.1.6" +version = "0.1.7" authors = ["ashthespy "] build = "build.rs" edition = "2018"