From 6975cbc161143bbbc1bf713e8aae2e58092b7a9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 17:57:26 +0000 Subject: [PATCH] chore: release --- web-codecs/CHANGELOG.md | 7 +++++++ web-codecs/Cargo.toml | 2 +- web-streams/CHANGELOG.md | 14 ++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 web-streams/CHANGELOG.md diff --git a/web-codecs/CHANGELOG.md b/web-codecs/CHANGELOG.md index 2fb8b74..ce7d76e 100644 --- a/web-codecs/CHANGELOG.md +++ b/web-codecs/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3](https://github.com/kixelated/web-rs/compare/web-codecs-v0.3.2...web-codecs-v0.3.3) - 2024-12-08 + +### Other + +- Try to fix cargo docs. +- Merge in web-streams and basic encoder support ([#6](https://github.com/kixelated/web-rs/pull/6)) + ## [0.3.2](https://github.com/kixelated/web-codecs-rs/compare/v0.3.1...v0.3.2) - 2024-11-26 ### Other diff --git a/web-codecs/Cargo.toml b/web-codecs/Cargo.toml index 0c5dfbb..4e0a24f 100644 --- a/web-codecs/Cargo.toml +++ b/web-codecs/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/web-rs" license = "MIT OR Apache-2.0" -version = "0.3.2" +version = "0.3.3" edition = "2021" categories = ["wasm", "multimedia", "web-programming", "api-bindings"] diff --git a/web-streams/CHANGELOG.md b/web-streams/CHANGELOG.md new file mode 100644 index 0000000..9851ee1 --- /dev/null +++ b/web-streams/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.1.0](https://github.com/kixelated/web-rs/releases/tag/web-streams-v0.1.0) - 2024-12-08 + +### Other + +- Merge in web-streams and basic encoder support ([#6](https://github.com/kixelated/web-rs/pull/6))