From f6f4730b91bb24036a9798bcd3f96c0147d2c479 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 13:21:57 +0000 Subject: [PATCH] chore: release v0.2.9 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 2 +- tools/Cargo.toml | 2 +- 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5837a59 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.9](https://github.com/Remade-With-Rust/rusty_av2d/compare/rusty_av2d-v0.2.8...rusty_av2d-v0.2.9) - 2026-08-28 + +### Other + +- add release-plz so merged dependency bumps actually reach crates.io ([#2](https://github.com/Remade-With-Rust/rusty_av2d/pull/2)) +- bump rusty_alloc-api to =1.1.4 ([#1](https://github.com/Remade-With-Rust/rusty_av2d/pull/1)) diff --git a/Cargo.lock b/Cargo.lock index 854087e..eeb744d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,9 +231,9 @@ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" [[package]] name = "rusty_alloc" -version = "0.4.0" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55d8238f1165c10d44f81659ef91520212bd19ecdf00334199f30cc2e23fa3d8" +checksum = "037acdf50c589a85578aab74b848346b353c94db19ddad4774bfa925afbd128a" dependencies = [ "libc", "windows-sys 0.60.2", @@ -241,16 +241,16 @@ dependencies = [ [[package]] name = "rusty_alloc-api" -version = "0.4.0" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3789bdf345c74197604e7234f20eab396fbe749954c2f1c46d405b6d56309edc" +checksum = "02301ad2df6159237fe4087334310d48543aa626ae9b89410b38a9d5b77e04e0" dependencies = [ "rusty_alloc", ] [[package]] name = "rusty_av2d" -version = "0.2.8" +version = "0.2.9" dependencies = [ "assert_matches", "atomig", diff --git a/Cargo.toml b/Cargo.toml index 555d23a..29df978 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ default-members = [".", "tools"] [package] name = "rusty_av2d" authors = ["Mata Network ", "Rav1d Developers", "Prossimo", "dav1d authors"] -version = "0.2.8" +version = "0.2.9" edition = "2021" rust-version = "1.79" description = "Pure-Rust AV2 video decoder, no C/FFI. Byte-identical to the AVM reference decoder across a 57-clip conformance corpus." diff --git a/tools/Cargo.toml b/tools/Cargo.toml index c93d794..17d4adc 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -24,7 +24,7 @@ name = "seek_stress" rusty_alloc-api = "=1.1.4" cfg-if = "1.0.0" libc = "0.2" -rusty_av2d = { path = "../", version = "0.2.2", default-features = false, features = ["capi"] } +rusty_av2d = { path = "../", version = "0.2.9", default-features = false, features = ["capi"] } [build-dependencies] cc = "1.0.79"