diff --git a/CHANGELOG.md b/CHANGELOG.md index dd2ae09..82b7496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Version History +## Version 1.2.0 (2023-12-28) + +### Breaking changes: + +- The trait methods `Decoder::decode()` and `Encoder::encode()` are no longer marked unsafe. Refer to the new documentation on how these trait methods should be implemented. + +### Other changes: + +- Removed all unsafe code +- Bumped `rtrb` to version "0.3.0" +- Updated demos to use latest version of `egui` + ## Version 1.1.0 (2023-07-11) - Added the ability to decode MP4/AAC/ALAC files diff --git a/decode_symphonia/Cargo.toml b/decode_symphonia/Cargo.toml index 38b5356..df2a2d5 100644 --- a/decode_symphonia/Cargo.toml +++ b/decode_symphonia/Cargo.toml @@ -16,7 +16,7 @@ repository = "https://github.com/RustyDAW/creek" [dependencies] creek-core = { version = "0.2.0", path = "../core" } log = "0.4" -symphonia = "0.5.3" +symphonia = "0.5" [dev-dependencies] float-cmp = "0.9"