[READ-ONLY] Mirror of https://github.com/probablykasper/redlux. AAC decoder for MPEG-4 and AAC files, with rodio support
aac audio decoder mp4 package
0

Configure Feed

Select the types of activity you want to include in your feed.

Bump version

Kasper (Jun 4, 2023, 8:45 PM +0200) 6df84497 d8575295

+7 -13
+3
CHANGELOG.md
··· 1 + ## 0.7.0 - 2023 Jun 4 2 + - Make `rodio` an optional (but enabled by default) feature 3 + 1 4 ## 0.6.0 - 2023 Feb 4 2 5 - Bump rodio to `0.16.0` for rodio API breakage in Decoder trait bounds 3 6 - Bump mp4 to `0.12.0`
+1 -1
Cargo.lock
··· 628 628 629 629 [[package]] 630 630 name = "redlux" 631 - version = "0.6.0" 631 + version = "0.7.0" 632 632 dependencies = [ 633 633 "fdk-aac", 634 634 "mp4",
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "redlux" 3 - version = "0.6.0" 3 + version = "0.7.0" 4 4 description = "AAC decoder for MPEG-4 (MP4, M4A etc) and AAC files, with rodio support" 5 5 authors = ["Kasper Henningsen"] 6 6 edition = "2018"
+2 -11
README.md
··· 37 37 1. Update `CHANGELOG.md` 38 38 2. Bump the version number in `Cargo.toml` 39 39 3. Run `cargo test` 40 - 4. Create a git tag in format `v#.#.#` 41 - 5. Publish on crates.io: 42 - 1. Login by running `cargo login` and following the instructions 43 - 2. Test publish to ensure there are no errors/warnings 44 - ``` 45 - cargo publish --dry-run 46 - ``` 47 - 3. Publish 48 - ``` 49 - cargo publish 50 - ``` 40 + 4. Run `cargo publish` 41 + 5. Create a git tag in format `v#.#.#` 51 42 6. Create GitHub release with release notes