Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexCharlton committed Mar 7, 2024
1 parent 37f3a92 commit 159fc92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midi-msg"
description = "A (eventually) complete representation of the MIDI 1.0 Detailed Specification and its many extensions and addenda, to allow for the serialization and deserialization of MIDI byte streams to and from a typed representation."
version = "0.5.0"
description = "A (eventually) complete representation of the MIDI 1.0 Detailed Specification and its many extensions and addenda, allowing for the serialization and deserialization of MIDI byte streams to and from a typed representation."
version = "0.6.0"
authors = ["Alex Charlton"]
edition = "2018"
readme = "readme.md"
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Since the MIDI spec makes extensive use of non-byte-aligned integers, a Rust rep
Add the following line to your Cargo.toml file:

```
midi-msg = "0.5"
midi-msg = "0.6"
```

If you want to use midi-msg in a `no_std` environment, add this line instead:

```
midi-msg = { version = "0.5", default-features = false, features=["sysex"] }
midi-msg = { version = "0.6", default-features = false, features=["sysex"/"file"] }
```

## Disabling system exclusive or MIDI File functionality
Expand Down

0 comments on commit 159fc92

Please sign in to comment.