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) 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"]