From 2146846df4b7b207611cb4d4047a3e8e5aeaaed5 Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Wed, 4 Dec 2024 09:54:53 +0000 Subject: [PATCH] Chore: Release v0.4.6 --- CHANGELOG.md | 45 +++++++++++++++++++++++++++++++++++---------- Cargo.toml | 2 +- cliff.toml | 2 +- 3 files changed, 37 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0fe6250..e575b2b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## [v0.4.6] — 2024-12-04 + +This patch release adds the ability to pass custom arguments into `yt-dlp` instances, and fixes early event handling needed for voice receive as well as inner track handle state after `set_track` is called. + +Thanks to the following for their contributions: + +- [@JellyWX] +- [@FelixMcFelix] +- [@Henauxg] + + +### Added + +- Input: accept additional user arguments for yt-dlp ([@Henauxg]) [c:71535c5] + +### Fixed + +- Fix: Clear track_handles when SetTrack heard ([@JellyWX]) [c:651d037] +- Fix: pass mid-connection WS events to task ([@FelixMcFelix]) [c:17993bc] + + +[v0.4.6]: https://github.com/serenity-rs/songbird/compare/v0.4.5...v0.4.6 + + + +[c:651d037]: https://github.com/serenity-rs/songbird/commit/651d037a54ce37f5b69f456ccdfdb03ba9de8a91 +[c:17993bc]: https://github.com/serenity-rs/songbird/commit/17993bc0d0ae7a4e43e86bbb6439c30538b67832 +[c:71535c5]: https://github.com/serenity-rs/songbird/commit/71535c5e87a2e94fc5f3a83efc8d4277c67b3462 + + + ## [v0.4.5] — 2024-11-22 This patch release includes some fixes to edge conditions in voice receive, and prevents a panic when creating HLS streams in non-tokio contexts. @@ -55,12 +86,6 @@ Thanks to the following for their contributions: - Change HlsStream to a more generic AsyncReadOnlySource ([@rhgndf]) [c:fe9b156] - - -[@tignear]: https://github.com/tignear -[@rhgndf]: https://github.com/rhgndf - - [c:10ce458]: https://github.com/serenity-rs/songbird/commit/10ce4584561f55aab2af2803f9629304d8b9e255 [c:fe9b156]: https://github.com/serenity-rs/songbird/commit/fe9b156906640a8e6c8135c71d37d758958fc522 @@ -122,10 +147,6 @@ Thanks to the following for their contributions: [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 @@ -761,6 +782,7 @@ We'd also like to thank all users who have contributed to this module in the pas [@acdenisSK]: https://github.com/acdenisSK +[@AlvaroMS25]: https://github.com/AlvaroMS25 [@Arcterus]: https://github.com/Arcterus [@asg051]: https://github.com/asg051 [@btoschek]: https://github.com/btoschek @@ -776,6 +798,7 @@ We'd also like to thank all users who have contributed to this module in the pas [@ForsakenHarmony]: https://github.com/ForsakenHarmony [@ftriquet]: https://github.com/ftriquet [@GnomedDev]: https://github.com/GnomedDev +[@Henauxg]: https://github.com/Henauxg [@hiratara]: https://github.com/hiratara [@indiv0]: https://github.com/indiv0 [@james7132]: https://github.com/james7132 @@ -799,6 +822,7 @@ We'd also like to thank all users who have contributed to this module in the pas [@Prof-Bloodstone]: https://github.com/Prof-Bloodstone [@Proximyst]: https://github.com/Proximyst [@reiyw]: https://github.com/reiyw +[@rhgndf]: https://github.com/rhgndf [@Roughsketch]: https://github.com/Roughsketch [@saanuregh]: https://github.com/saanuregh [@Sebbl0508]: https://github.com/Sebbl0508 @@ -806,6 +830,7 @@ We'd also like to thank all users who have contributed to this module in the pas [@Sreyas-Sreelal]: https://github.com/Sreyas-Sreelal [@tarcieri]: https://github.com/tarcieri [@tazz4843]: https://github.com/tazz4843 +[@tignear]: https://github.com/tignear [@tktcorporation]: https://github.com/tktcorporation [@vaporox]: https://github.com/vaporox [@vicky5124]: https://github.com/vicky5124 diff --git a/Cargo.toml b/Cargo.toml index a3c04d030..7e09bfc31 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.5" +version = "0.4.6" [dependencies] aead = { optional = true, version = "0.5.2" } diff --git a/cliff.toml b/cliff.toml index 5febebfcb..4696212f2 100644 --- a/cliff.toml +++ b/cliff.toml @@ -22,7 +22,7 @@ Thanks to the following for their contributions: ### Changed {% for commit in commits %} - {{ commit.message | split(pat="\n") | first | upper_first | trim }} \ - {% if commit.github.username %}([@{{ commit.github.username }}]){% raw %} {% endraw %}{%- endif -%} \ + {% if commit.remote.username %}([@{{ commit.remote.username }}]){% raw %} {% endraw %}{%- endif -%} \ [c:{{ commit.id | truncate(length=7, end="") }}] {%- endfor -%}