From 184c7aa1d3082cf84507b5be35cebf677e331962 Mon Sep 17 00:00:00 2001 From: Patrick Reisert Date: Sat, 18 Apr 2026 13:27:37 +0200 Subject: [PATCH 1/2] Prepare release of 0.11.0 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e2f5bab..5ef5ea9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,11 @@ members = [".", "examples/browser"] [package] name = "midir" -version = "0.11.0-pre" +version = "0.11.0" authors = ["Patrick Reisert"] description = "A cross-platform, realtime MIDI processing library, inspired by RtMidi." repository = "https://github.com/Boddlnagg/midir" +documentation = "https://docs.rs/midir" readme = "README.md" keywords = ["midi", "audio", "music", "sound"] categories = ["multimedia::audio", "api-bindings"] From cf4fe0239d608738a521ed92319e5e7817c00422 Mon Sep 17 00:00:00 2001 From: Patrick Reisert Date: Sat, 18 Apr 2026 13:40:42 +0200 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72d30eb..9a345e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All major changes to this project will be documented in this file. +## [0.11.0] 2026-04-18 +- Add Android platform support ([#174](https://github.com/Boddlnagg/midir/issues/174) - thanks @mlm-games) +- `find_port_by_id` now takes a `&str` instead of a `String` ([#180](https://github.com/Boddlnagg/midir/issues/180)) +- Cut off terminating zero for WinMM port ID ([#179](https://github.com/Boddlnagg/midir/issues/179)) +- Various dependency upgrades +- Fix Clippy findings, apply rustfmt, migrate CI from Azure Pipelines to GitHub Actions + ## [0.10.3] 2025-10-27 - Fix UB in WinMM backend ([#137](https://github.com/Boddlnagg/midir/issues/137) - thanks @barafael) - Fix file descriptor leak in ALSA backend ([#175](https://github.com/Boddlnagg/midir/pull/175) - thanks @abique)