From 872ff845dd54e1fb8525ad09495a23d570ef5130 Mon Sep 17 00:00:00 2001 From: Ben Leadbetter Date: Fri, 10 May 2024 12:39:25 +0200 Subject: [PATCH 1/2] chore: bump cargo version to 0.3.1 --- 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 1d9c987..40cd250 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "midi2" -version = "0.3.0" +version = "0.3.1" 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.3.0", path = "midi2_proc" } +midi2_proc = { version = "0.3.1", path = "midi2_proc" } ux = "0.1.6" [dev-dependencies] diff --git a/README.md b/README.md index f74a1dd..cc2ebe6 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.3.0", default-features = false, features = ["channel-voice2", "sysex7"], } +midi2 = { version = "0.3.1", default-features = false, features = ["channel-voice2", "sysex7"], } ``` ### Generic Representation diff --git a/midi2_proc/Cargo.toml b/midi2_proc/Cargo.toml index 6ce3920..898b053 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.3.0" +version = "0.3.1" edition = "2021" readme = "README.md" license = "MIT OR Apache-2.0" From 1012bfec4261e457906d65bcb80d130e835f7b1d Mon Sep 17 00:00:00 2001 From: Ben Leadbetter Date: Fri, 10 May 2024 12:40:56 +0200 Subject: [PATCH 2/2] docs: update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19896de..0152818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.3.1 +docs: fix typos in readme +fix: panic on empty flex-data text iterator +fix: panic on empty ump-stream text iterator + # 0.3.0 docs: fix further readme typos feat: utility messages are integrated into top level aggregate