Skip to content

Commit 9220bd6

Browse files
committed
chore: Merge tag '0.11.0' into develop
0.11.0
2 parents 62499f5 + 596aa78 commit 9220bd6

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

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

3+
## [0.11.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.10.0..0.11.0) - 2025-08-21
4+
5+
### ✨ Features
6+
7+
- *(sysex)* Splicing payload data - ([3ce414c](https://github.com/midi2-dev/bl-midi2-rs/commit/3ce414c4576f82497518f5a8c7396126b628ea6d))
8+
9+
### 🐛 Fixes
10+
11+
- Ci | release start determines incorrect previous version - ([62499f5](https://github.com/midi2-dev/bl-midi2-rs/commit/62499f51907fb67e234946b964528a38a33800df))
12+
- Include trailing reserved bytes - ([6e224a9](https://github.com/midi2-dev/bl-midi2-rs/commit/6e224a92c9aab5595aa12a373b2996a831f33bdd))
13+
- Further clippy warnings - ([8bbee8b](https://github.com/midi2-dev/bl-midi2-rs/commit/8bbee8ba8932b13aa018befd98e88a6f8e0c68d1))
14+
- Readme file link - ([eaa0c41](https://github.com/midi2-dev/bl-midi2-rs/commit/eaa0c41e24c8e1f70a8a1168d93705b14e722907))
15+
316
## [0.10.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.9.0..0.10.0) - 2025-07-27
417

518
### 🐛 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.10.0", default-features = false, features = ["channel-voice2", "sysex7"], }
166+
midi2 = { version = "0.11.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.10.0"
3+
version = "0.11.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.10.0", path = "../midi2_proc" }
20+
midi2_proc = { version = "0.11.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.10.0"
4+
version = "0.11.0"
55
edition = "2021"
66
readme = "README.md"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)