Skip to content

Commit 44e0b8f

Browse files
committed
chore: Merge branch 'release/0.8.2'
2 parents 120c6d7 + 84a028e commit 44e0b8f

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

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

3+
## [0.8.2](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.1..0.8.2) - 2025-03-02
4+
5+
### 🐛 Fixes
6+
7+
- Publish broken because can't find midi2 readme - ([db24585](https://github.com/midi2-dev/bl-midi2-rs/commit/db245851aa931e2dbc37b18c34e7c6712d562dfd))
8+
9+
310
## [0.8.1](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.0..0.8.1) - 2025-03-02
411

512
### 🐛 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.1", default-features = false, features = ["channel-voice2", "sysex7"], }
166+
midi2 = { version = "0.8.2", default-features = false, features = ["channel-voice2", "sysex7"], }
167167
```
168168

169169
### Generic Representation

midi2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "midi2"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
6-
readme = "../README.md"
6+
readme = "README.md"
77
license = "MIT OR Apache-2.0"
88
authors = [
99
"Ben Leadbetter <[email protected]>",
@@ -13,7 +13,7 @@ repository = "https://github.com/midi2-dev/bl-midi2-rs.git"
1313
[dependencies]
1414
derive_more = { version = "2.0.1", features = ["from"], default-features = false }
1515
fixed = "1.28.0"
16-
midi2_proc = { version = "0.8.1", path = "../midi2_proc" }
16+
midi2_proc = { version = "0.8.2", path = "../midi2_proc" }
1717
ux = "0.1.6"
1818

1919
[dev-dependencies]

midi2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

midi2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![no_std]
22
#![cfg_attr(docsrs, feature(doc_cfg))]
3-
#![doc = include_str!("../../README.md")]
3+
#![doc = include_str!("../README.md")]
44

55
#[cfg(any(feature = "std", test))]
66
extern crate std;

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.1"
4+
version = "0.8.2"
55
edition = "2021"
66
readme = "README.md"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)