From 25d59a69562928ca6dfa0a0262daaddbd98f2fe3 Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Mon, 8 Jul 2024 12:03:02 +0100 Subject: [PATCH] chore: Release v0.4.2 --- CHANGELOG.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d5de3cba..7dfe368e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,51 @@ # Changelog +## [v0.4.2] — 2024-07-08 + +This patch release adds in support for HLS and M3U8 stream playback, in addition to several bugfixes. + +Thanks to the following for their contributions: + +- [@FelixMcFelix] +- [@Erk-] +- [@GnomedDev] +- [@AlvaroMS25] + + +### Changed + +- Chore(deps): Update tokio-tungstenite -> 0.23 ([@FelixMcFelix]) [c:bbc9e03] +- Chore(deps): Update rubato -> 0.15 ([@FelixMcFelix]) [c:169d527] +- Chore(deps): Update ringbuf -> 0.4 ([@FelixMcFelix]) [c:93f2e0b] +- Feat(input): Support HLS streams ([@Erk-]) [c:8e92c49] +- Fix(conn): Some operating systems does not allow 0 recv buffer ([@Erk-]) [c:2e68338] +- Fix clippy warnings ([@GnomedDev]) [c:5bbe80f] +- Make DisposalThread reachable ([@AlvaroMS25]) [c:1d5b259] +- Driver: Fix multiple disconnect events on `leave` ([@FelixMcFelix]) [c:a5d9b58] +- Driver: Fix slot length check on packet passthrough ([@FelixMcFelix]) [c:58f5c89] +- Chore: Fix timestamp in \git cliff -u\ ([@FelixMcFelix]) [c:8f60cf5] + + +[v0.4.2]: https://github.com/serenity-rs/songbird/compare/v0.4.1...v0.4.2 + + +[@AlvaroMS25]: https://github.com/AlvaroMS25 + + + +[c:bbc9e03]: https://github.com/serenity-rs/songbird/commit/bbc9e03e47efc90898a084fd2f9a4e877ed5c1a7 +[c:169d527]: https://github.com/serenity-rs/songbird/commit/169d527e54a7c0beaff85304344bdabb9daec944 +[c:93f2e0b]: https://github.com/serenity-rs/songbird/commit/93f2e0b6365d89b234e95eb84a6f7e2f6e3dc358 +[c:8e92c49]: https://github.com/serenity-rs/songbird/commit/8e92c49b2b88f5a23faa27a5ff5e2c0cdfa700c1 +[c:2e68338]: https://github.com/serenity-rs/songbird/commit/2e683380fa1f9cd2e93b9836d5fa9f1f3e9e8b66 +[c:5bbe80f]: https://github.com/serenity-rs/songbird/commit/5bbe80f20c2a7e4e889149672d8ae03f6450b9e8 +[c:1d5b259]: https://github.com/serenity-rs/songbird/commit/1d5b25965b48f156e1ca37a3772ad8ea47417f1c +[c:a5d9b58]: https://github.com/serenity-rs/songbird/commit/a5d9b58e941d568dcd8a4cc1cbb5bf9266f7d006 +[c:58f5c89]: https://github.com/serenity-rs/songbird/commit/58f5c89f92ee36811ac08b04ac603632a4433d1d +[c:8f60cf5]: https://github.com/serenity-rs/songbird/commit/8f60cf573e1f49ba82d104273a26bee960fc1435 + + + ## [v0.4.1] — 2024-02-29 This patch release includes several fixes to how audio tasks behave when moved between channels, and prevents a crash on zero-length packets in 48kHz Ogg Vorbis files. diff --git a/Cargo.toml b/Cargo.toml index 0ace83ad5..8946a28ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "songbird" readme = "README.md" repository = "https://github.com/serenity-rs/songbird.git" rust-version = "1.74" -version = "0.4.1" +version = "0.4.2" [dependencies] async-trait = { optional = true, version = "0.1" }