Skip to content

Commit e32d5a6

Browse files
author
Ben Leadbetter
committed
chore: Merge tag '0.6.0' into develop
0.6.0
2 parents 72e5eb8 + 3ae162e commit e32d5a6

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.4
2+
* feat: generate MIDI CI messages
3+
* strongly typed MIDI CI version
4+
* implement MIDI CI discovery
5+
* fix: fixes sysex next impl broken with 'empty' packets
6+
* fix: some clippy warnings
7+
* refactor!: ci is no longer a default feature
8+
* refactor!: rename `note` properties to `note_number`
9+
* refactor!: `pitch7_9` and `pitch7_25` used fixed number type
10+
* pull in `fixed` crate
11+
112
# 0.5.4
213
* ci: update remote repo url to midi2-dev
314

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.5.4"
3+
version = "0.6.0"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
66
readme = "README.md"
@@ -37,7 +37,7 @@ utility = []
3737
[dependencies]
3838
derive_more = { version = "0.99.17", features = ["from"], default-features = false }
3939
fixed = "1.27.0"
40-
midi2_proc = { version = "0.5.4", path = "midi2_proc" }
40+
midi2_proc = { version = "0.6.0", path = "midi2_proc" }
4141
ux = "0.1.6"
4242

4343
[dev-dependencies]

README.md

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

158158
```toml
159-
midi2 = { version = "0.5.4", default-features = false, features = ["channel-voice2", "sysex7"], }
159+
midi2 = { version = "0.6.0", default-features = false, features = ["channel-voice2", "sysex7"], }
160160
```
161161

162162
### Generic Representation

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

0 commit comments

Comments
 (0)