Skip to content

Commit

Permalink
Merge tag '0.2.4' into develop
Browse files Browse the repository at this point in the history
0.2.4
  • Loading branch information
Ben Leadbetter committed May 8, 2024
2 parents 9d5d502 + 76f784a commit 34def1b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.2.4
ci: add standard cargo github actions
docs: fix various typos
docs: online docs generated with all features enabled
fix: sysex7 / sysex8 payload iterator integration with jr headers
fix: sysex7 / sysex8 payload iterator panics when empty
test: add fuzzing target for sysex7 and sysex8 roundtrip

# 0.2.3
fix: handling messages example code
fix: default features include cv2 not cv1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "midi2"
version = "0.2.3"
version = "0.2.4"
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
edition = "2021"
readme = "README.md"
Expand Down Expand Up @@ -34,7 +34,7 @@ ump-stream = []

[dependencies]
derive_more = { version = "0.99.17", features = ["from"], default-features = false }
midi2_proc = { version = "0.2.3", path = "midi2_proc" }
midi2_proc = { version = "0.2.4", path = "midi2_proc" }
ux = "0.1.6"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ You'll want to setup midi2 without default features to compile
without the `std` feature.

```toml
midi2 = { version = "0.2.3", default-features = false, features = ["channel-voice2", "sysex7"], }
midi2 = { version = "0.2.4", default-features = false, features = ["channel-voice2", "sysex7"], }
```

### Generic Representation
Expand Down
2 changes: 1 addition & 1 deletion midi2_proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midi2_proc"
description = "Internal procedural macro crate. Only intended for use with midi2"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 34def1b

Please sign in to comment.