diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index ca3882e8..787cce72 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: build_target: [macos, linux, linux-armhf, linux-armv6] - rust: [1.47.0] + rust: [stable] artifact_type: ['slim', 'default', 'full'] # The build strategy will build all types for each OS specified include: - artifact_type: 'slim' # Slim version has no features enabled by default. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a55bc2c..d94c53d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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] +### Added +### Changed +### Removed + +## [0.3.1] +### Added +- Use eyre for better error reporting [#789] +- Add a contributers file + +### Changed +- Change docs from readme to mkdocs [#783] +- Update librespot, thus fixing [#719] [#900] +### Removed + +[#789]: https://github.com/Spotifyd/spotifyd/pull/789 +[#783]: https://github.com/Spotifyd/spotifyd/pull/783 +[#719]: https://github.com/Spotifyd/spotifyd/issues/719 +[#900]: https://github.com/Spotifyd/spotifyd/pull/900 +## [0.3.0] ### Added - Added a changelog [#714] ### Changed diff --git a/Cargo.lock b/Cargo.lock index 5efc34b4..1c720242 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3095,7 +3095,7 @@ checksum = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3" [[package]] name = "spotifyd" -version = "0.3.0" +version = "0.3.2" dependencies = [ "alsa 0.3.0", "chrono", diff --git a/Cargo.toml b/Cargo.toml index f2dfa343..025e9df4 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.0" +version = "0.3.2" [dependencies] alsa = { version = "0.3", optional = true }