Skip to content

Commit

Permalink
Merge tag '0.4.0' into develop
Browse files Browse the repository at this point in the history
0.4.0
  • Loading branch information
Ben Leadbetter committed May 12, 2024
2 parents db3c1df + 7381b6f commit 841bba6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.4.0
feat: top level messages implement From for all messages
fix: ⚠️ utility messages should be excluded when feature is not enabled
refactor: remove some unused code
refactor: ⚠️ hide private utility submodules

# 0.3.1
docs: fix typos in readme
fix: panic on empty flex-data text iterator
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.3.1"
version = "0.4.0"
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
edition = "2021"
readme = "README.md"
Expand Down Expand Up @@ -35,7 +35,7 @@ utility = []

[dependencies]
derive_more = { version = "0.99.17", features = ["from"], default-features = false }
midi2_proc = { version = "0.3.1", path = "midi2_proc" }
midi2_proc = { version = "0.4.0", 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 @@ -156,7 +156,7 @@ You'll want to setup midi2 without default features to compile
without the `std` feature.

```toml
midi2 = { version = "0.3.1", default-features = false, features = ["channel-voice2", "sysex7"], }
midi2 = { version = "0.4.0", 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.3.1"
version = "0.4.0"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 841bba6

Please sign in to comment.