Skip to content

Commit 652f126

Browse files
committed
chore(release): Merge tag '0.9.0' into develop
0.9.0
2 parents e0d5920 + bd5088f commit 652f126

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.9.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.2..0.9.0) - 2025-05-13
4+
5+
### ✨ Features
6+
7+
- Extend sysex api - ([909c6e1](https://github.com/midi2-dev/bl-midi2-rs/commit/909c6e171f838ccb2c3c16a78ffc94ede44ead70))
8+
- Payload from sysex packets - ([f196aac](https://github.com/midi2-dev/bl-midi2-rs/commit/f196aac7c91f6951038f710610fffd2b67da78b2))
9+
10+
### 🐛 Fixes
11+
12+
- Sysex7 packet with invalid size passes validation - ([edd5ca2](https://github.com/midi2-dev/bl-midi2-rs/commit/edd5ca278f653e0bdc3f516086dad4ed2502101e))
13+
- Ignore clippy lint with false positives - ([3f47e53](https://github.com/midi2-dev/bl-midi2-rs/commit/3f47e53529025d3deef5e5d42876375b8e6a5ed2))
14+
15+
### 🧪 Testing
16+
17+
- Adds sysex insert fuzz test - ([e0d5920](https://github.com/midi2-dev/bl-midi2-rs/commit/e0d592055c7fc3902d7c61155afb7368b517e841))
18+
19+
320
## [0.8.2](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.1..0.8.2) - 2025-03-02
421

522
### 🐛 Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ You'll want to setup midi2 without default features to compile
163163
without the `std` feature.
164164

165165
```toml
166-
midi2 = { version = "0.8.2", default-features = false, features = ["channel-voice2", "sysex7"], }
166+
midi2 = { version = "0.9.0", default-features = false, features = ["channel-voice2", "sysex7"], }
167167
```
168168

169169
### Generic Representation

midi2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "midi2"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
66
readme = "README.md"
@@ -17,7 +17,7 @@ manual_div_ceil = "allow"
1717
[dependencies]
1818
derive_more = { version = "2.0.1", features = ["from"], default-features = false }
1919
fixed = "1.28.0"
20-
midi2_proc = { version = "0.8.2", path = "../midi2_proc" }
20+
midi2_proc = { version = "0.9.0", path = "../midi2_proc" }
2121
ux = "0.1.6"
2222

2323
[dev-dependencies]

midi2_proc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midi2_proc"
33
description = "Internal procedural macro crate. Only intended for use with midi2"
4-
version = "0.8.2"
4+
version = "0.9.0"
55
edition = "2021"
66
readme = "README.md"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)