chore: Release v0.4.2

This commit is contained in:
Kyle Simpson
2024-07-08 12:03:02 +01:00
parent bbc9e03e47
commit 25d59a6956
2 changed files with 47 additions and 1 deletions

View File

@@ -1,5 +1,51 @@
# Changelog # 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]
<!-- COMPARISONS -->
[v0.4.2]: https://github.com/serenity-rs/songbird/compare/v0.4.1...v0.4.2
<!-- AUTHORS -->
[@AlvaroMS25]: https://github.com/AlvaroMS25
<!-- COMMITS -->
[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
<!-- generated by git-cliff -->
## [v0.4.1] — 2024-02-29 ## [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. 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.

View File

@@ -11,7 +11,7 @@ name = "songbird"
readme = "README.md" readme = "README.md"
repository = "https://github.com/serenity-rs/songbird.git" repository = "https://github.com/serenity-rs/songbird.git"
rust-version = "1.74" rust-version = "1.74"
version = "0.4.1" version = "0.4.2"
[dependencies] [dependencies]
async-trait = { optional = true, version = "0.1" } async-trait = { optional = true, version = "0.1" }