From 9404089abcdbd8d34259eb1179032218fe3ed0f8 Mon Sep 17 00:00:00 2001 From: CI Date: Sun, 27 Jul 2025 09:23:58 +0000 Subject: [PATCH] chore(release): prepare 0.10.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- midi2/Cargo.toml | 4 ++-- midi2_proc/Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f431f60..5ced957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.10.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.9.0..0.10.0) - 2025-07-27 + +### 🐛 Fixes + +- Rust 1.90.0 clippy warnings - ([5f24196](https://github.com/midi2-dev/bl-midi2-rs/commit/5f24196b16171a65587ef3fbaa42673717af23ac)) +- U20 for Delta Clockstamp Ticks Since Last Event per spec - ([9bfa4de..2d5713e](https://github.com/midi2-dev/bl-midi2-rs/compare/9bfa4de5b399e42682993adacece0cd79c7cf038..2d5713e762f09e468cd0ec6ffb0d7037ce95df7f)) +- Clippy warnings from rust 1.87.0 - ([9bfa4de](https://github.com/midi2-dev/bl-midi2-rs/commit/9bfa4de5b399e42682993adacece0cd79c7cf038)) + +### 📚 Documentation + +- Improve the wording and details of the contributing docs - ([](https://github.com/midi2-dev/bl-midi2-rs/commit/a30428f294c5ca6e8c97bf3cbc1f2436797893a6)) + +## New Contributors ❤️ + +* @dpezely made their first contribution in [#73](https://github.com/midi2-dev/bl-midi2-rs/pull/73) + ## [0.9.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.2..0.9.0) - 2025-05-13 ### ✨ Features diff --git a/README.md b/README.md index c1f9618..920abac 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ You'll want to setup midi2 without default features to compile without the `std` feature. ```toml -midi2 = { version = "0.9.0", default-features = false, features = ["channel-voice2", "sysex7"], } +midi2 = { version = "0.10.0", default-features = false, features = ["channel-voice2", "sysex7"], } ``` ### Generic Representation diff --git a/midi2/Cargo.toml b/midi2/Cargo.toml index 0e82d74..25de570 100644 --- a/midi2/Cargo.toml +++ b/midi2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "midi2" -version = "0.9.0" +version = "0.10.0" description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data." edition = "2021" readme = "README.md" @@ -17,7 +17,7 @@ manual_div_ceil = "allow" [dependencies] derive_more = { version = "2.0.1", features = ["from"], default-features = false } fixed = "1.28.0" -midi2_proc = { version = "0.9.0", path = "../midi2_proc" } +midi2_proc = { version = "0.10.0", path = "../midi2_proc" } ux = "0.1.6" [dev-dependencies] diff --git a/midi2_proc/Cargo.toml b/midi2_proc/Cargo.toml index a66b27a..08eb820 100644 --- a/midi2_proc/Cargo.toml +++ b/midi2_proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "midi2_proc" description = "Internal procedural macro crate. Only intended for use with midi2" -version = "0.9.0" +version = "0.10.0" edition = "2021" readme = "README.md" license = "MIT OR Apache-2.0"