Skip to content

Commit a7c6669

Browse files
author
Ben Leadbetter
committed
Merge branch 'release/0.2.3'
2 parents 4754e98 + 63490b4 commit a7c6669

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.3
2+
fix: handling messages example code
3+
fix: default features include cv2 not cv1
4+
15
# 0.2.2
26
chore: licencing
37
docs: address todos in readme

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "midi2"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
66
readme = "README.md"
@@ -20,7 +20,7 @@ name = "midi2"
2020
path = "src/lib.rs"
2121

2222
[features]
23-
default = ["std", "ci", "channel-voice1"]
23+
default = ["std", "ci", "channel-voice2"]
2424
ci = ["sysex7"]
2525
flex-data = []
2626
channel-voice1 = []
@@ -33,7 +33,7 @@ ump-stream = []
3333

3434
[dependencies]
3535
derive_more = { version = "0.99.17", features = ["from"], default-features = false }
36-
midi2_proc = { version = "0.2.2", path = "midi2_proc" }
36+
midi2_proc = { version = "0.2.3", path = "midi2_proc" }
3737
ux = "0.1.6"
3838

3939
[dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ without the `std` feature.
177177

178178
```toml
179179
// Cargo.toml
180-
midi2 = { version = "0.2.2", default-features = false, features = [<required-message-types>], }
180+
midi2 = { version = "0.2.3", default-features = false, features = [<required-message-types>], }
181181
```
182182

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

0 commit comments

Comments
 (0)