Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Loading