Skip to content

Commit

Permalink
Chore: Release v0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMcFelix committed Dec 4, 2024
1 parent 651d037 commit 2146846
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 12 deletions.
45 changes: 35 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]

<!-- COMPARISONS -->
[v0.4.6]: https://github.com/serenity-rs/songbird/compare/v0.4.5...v0.4.6


<!-- COMMITS -->
[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

<!-- generated by git-cliff -->

## [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.
Expand Down Expand Up @@ -55,12 +86,6 @@ Thanks to the following for their contributions:

- Change HlsStream to a more generic AsyncReadOnlySource ([@rhgndf]) [c:fe9b156]


<!-- AUTHORS -->
[@tignear]: https://github.com/tignear
[@rhgndf]: https://github.com/rhgndf


<!-- COMMITS -->
[c:10ce458]: https://github.com/serenity-rs/songbird/commit/10ce4584561f55aab2af2803f9629304d8b9e255
[c:fe9b156]: https://github.com/serenity-rs/songbird/commit/fe9b156906640a8e6c8135c71d37d758958fc522
Expand Down Expand Up @@ -122,10 +147,6 @@ Thanks to the following for their contributions:
<!-- 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
Expand Down Expand Up @@ -761,6 +782,7 @@ We'd also like to thank all users who have contributed to this module in the pas

<!-- AUTHORS -->
[@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
Expand All @@ -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
Expand All @@ -799,13 +822,15 @@ 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
[@s0lst1ce]: https://github.com/s0lst1ce
[@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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 -%}
Expand Down

0 comments on commit 2146846

Please sign in to comment.