From 6ea94b854b6b94f673cbe5dc7d1d1e5be4bb7939 Mon Sep 17 00:00:00 2001 From: "Eric S. Londres" Date: Tue, 22 Nov 2022 20:57:48 -0500 Subject: [PATCH 1/4] Update the changelog for the 0.3.4 release --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6230f265..ef93e369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ 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.3.4] ### Added - Implement the `PropertiesChanged` and `Seeked` events for the MPRIS-interface ([#1025]) - Add `cache_size` configuration option ([#1092]) +- Added formal documentation of the minimum required Rust version - which is currently 1.62 ([#1127]) ### Changed - Improvements to the documentation ([#955], [#1030], [#1039], [#1054], [#1055], [#1067]) - Fix cumulating delay in `on_song_change_hook` ([#1059]) From a124260db6baabe6aa87dfb1098c8e87b116d1cd Mon Sep 17 00:00:00 2001 From: "Eric S. Londres" Date: Tue, 22 Nov 2022 21:02:48 -0500 Subject: [PATCH 2/4] Bump version number in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 50738010..100bc1c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "spotifyd" description = "A Spotify daemon" repository = "https://github.com/Spotifyd/spotifyd" license = "GPL-3.0-only" -version = "0.3.3" +version = "0.3.4" rust-version = "1.62" [dependencies] From 58a001fd5304d87b655c03ed43b7c3b8f51dbbec Mon Sep 17 00:00:00 2001 From: "Eric S. Londres" Date: Tue, 22 Nov 2022 21:03:35 -0500 Subject: [PATCH 3/4] Update Cargo.lock for 0.3.4 --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index c35beed1..3976756c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2760,7 +2760,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spotifyd" -version = "0.3.3" +version = "0.3.4" dependencies = [ "alsa 0.5.0", "chrono", From 0b9a504ba00e25a2a8b0f60c74ac5d6b306c388c Mon Sep 17 00:00:00 2001 From: "Eric S. Londres" Date: Wed, 14 Dec 2022 21:16:21 -0500 Subject: [PATCH 4/4] CHANGELOG updates based on review --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef93e369..920e533f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Implement the `PropertiesChanged` and `Seeked` events for the MPRIS-interface ([#1025]) - Add `cache_size` configuration option ([#1092]) +- Add `dbus_type` configuration option ([#954]) - Added formal documentation of the minimum required Rust version - which is currently 1.62 ([#1127]) ### Changed -- Improvements to the documentation ([#955], [#1030], [#1039], [#1054], [#1055], [#1067]) +- Improvements to the documentation ([#894], [#955], [#1030], [#1039], [#1054], [#1055], [#1067]) - Fix cumulating delay in `on_song_change_hook` ([#1059]) - Only enable one of zeroconf discovery and password-authentication at the same time ([#1059]) - Convert mainloop to using `async` / `await` ([#1059]) @@ -19,9 +20,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Make `spotifyd` bus name unique ([#1100]) **Note:** If you were relying on the consistent bus name of `org.mpris.MediaPlayer2.spotifyd`, you can adapt your script e.g. by querying the name like `qdbus | grep "org.mpris.MediaPlayer2.spotifyd"` +- Fix wrong handling of credential cache ([#1121]) ### Removed - Replace redundant `reqwest` dependency ([#1120]) +[#894]: https://github.com/Spotifyd/spotifyd/pull/894 +[#954]: https://github.com/Spotifyd/spotifyd/pull/954 [#955]: https://github.com/Spotifyd/spotifyd/pull/955 [#1025]: https://github.com/Spotifyd/spotifyd/pull/1025 [#1030]: https://github.com/Spotifyd/spotifyd/pull/1030 @@ -35,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#1100]: https://github.com/Spotifyd/spotifyd/pull/1100 [#1108]: https://github.com/Spotifyd/spotifyd/pull/1108 [#1120]: https://github.com/Spotifyd/spotifyd/pull/1120 +[#1121]: https://github.com/Spotifyd/spotifyd/pull/1120 ## [0.3.3] ### Added @@ -77,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.2.24] -[Unreleased]: https://github.com/Spotifyd/spotifyd/compare/v0.3.3...HEAD +[Unreleased]: https://github.com/Spotifyd/spotifyd/compare/v0.3.4...HEAD +[0.3.4]: https://github.com/Spotifyd/spotifyd/releases/tag/v0.3.4 [0.3.3]: https://github.com/Spotifyd/spotifyd/releases/tag/v0.3.3 [0.3.1]: https://github.com/Spotifyd/spotifyd/releases/tag/v0.3.1 [0.3.0]: https://github.com/Spotifyd/spotifyd/releases/tag/v0.3.0