Chore: Release v0.5.0

This commit is contained in:
Kyle Simpson
2025-02-21 22:05:58 +00:00
parent e09843ded7
commit 84accb0e3a
5 changed files with 78 additions and 7 deletions

View File

@@ -30,13 +30,13 @@ project you will need to depend on Symphonia as well.
```toml
# Including songbird alone gives you support for Opus via the DCA file format.
[dependencies.songbird]
version = "0.4"
version = "0.5"
features = ["builtin-queue"]
# To get additional codecs, you *must* add Symphonia yourself.
# This includes the default formats (MKV/WebM, Ogg, Wave) and codecs (FLAC, PCM, Vorbis)...
[dependencies.symphonia]
version = "0.5.2"
version = "0.5"
features = ["aac", "mp3", "isomp4", "alac"] # ...as well as any extras you need!
```