From dedf32b7da09527410143aca3586fdc94909cb8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:10:52 +0000 Subject: [PATCH] chore: release v0.11.0 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aef2f8..9eb9604 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0](https://github.com/kixelated/mp4-atom/compare/v0.10.0...v0.11.0) - 2026-01-16 + +### Other + +- 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..ec7a5cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "mp4-atom" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 54fbb66..9cfd7b7 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.11.0" edition = "2021" keywords = ["mp4", "isobmff", "mp4box", "audio", "video"]