From 8f89ed89460c8059adde8f7f52e60e1990fda93e Mon Sep 17 00:00:00 2001 From: Ben Leadbetter Date: Fri, 17 May 2024 15:06:23 +0200 Subject: [PATCH] chore: bump version number -> 0.5.2 --- Cargo.toml | 4 ++-- README.md | 2 +- midi2_proc/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1a448ff..48af5b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "midi2" -version = "0.5.1" +version = "0.5.2" description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data." edition = "2021" readme = "README.md" @@ -35,7 +35,7 @@ utility = [] [dependencies] derive_more = { version = "0.99.17", features = ["from"], default-features = false } -midi2_proc = { version = "0.5.1", path = "midi2_proc" } +midi2_proc = { version = "0.5.2", path = "midi2_proc" } ux = "0.1.6" [dev-dependencies] diff --git a/README.md b/README.md index dfcbb30..2aeb215 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ You'll want to setup midi2 without default features to compile without the `std` feature. ```toml -midi2 = { version = "0.5.1", default-features = false, features = ["channel-voice2", "sysex7"], } +midi2 = { version = "0.5.2", default-features = false, features = ["channel-voice2", "sysex7"], } ``` ### Generic Representation diff --git a/midi2_proc/Cargo.toml b/midi2_proc/Cargo.toml index 1c04ad2..e6e524a 100644 --- a/midi2_proc/Cargo.toml +++ b/midi2_proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "midi2_proc" description = "Internal procedural macro crate. Only intended for use with midi2" -version = "0.5.1" +version = "0.5.2" edition = "2021" readme = "README.md" license = "MIT OR Apache-2.0"