diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aef2f8..e9dd745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/kixelated/mp4-atom/compare/v0.10.0...v0.10.1) - 2026-01-23 + +### Other + +- handle compressorname encoding of length ([#113](https://github.com/kixelated/mp4-atom/pull/113)) +- Add #[non_exhaustive] to Codec enum ([#114](https://github.com/kixelated/mp4-atom/pull/114)) +- add support for the refs sample groups ([#106](https://github.com/kixelated/mp4-atom/pull/106)) +- add cprt and kind child boxes ([#104](https://github.com/kixelated/mp4-atom/pull/104)) +- add support for ccst child in hvc1 ([#102](https://github.com/kixelated/mp4-atom/pull/102)) +- add nmhd and sthd boxes ([#103](https://github.com/kixelated/mp4-atom/pull/103)) + ## [0.10.0](https://github.com/kixelated/mp4-atom/compare/v0.9.2...v0.10.0) - 2026-01-14 ### Other diff --git a/Cargo.lock b/Cargo.lock index 365b795..3e91785 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "mp4-atom" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 54fbb66..0c4fd2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/kixelated/mp4-atom" license = "MIT OR Apache-2.0" -version = "0.10.0" +version = "0.10.1" edition = "2021" keywords = ["mp4", "isobmff", "mp4box", "audio", "video"]