From 9b9905fb2ac644b12990973f0c6f3a4e8fbd4678 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Sat, 10 Mar 2018 15:44:46 +0100 Subject: [PATCH] chore: Bump version to 4.4.0 --- doc/Doxyfile | 2 +- library.json | 4 ++-- library.properties | 2 +- src/midi_Defs.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index 5773a06..07f94d4 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino MIDI Library" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "Version 4.3.1" +PROJECT_NUMBER = "Version 4.4.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/library.json b/library.json index ad0375b..bf270c5 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "MIDI Library", - "version": "4.3.1", + "version": "4.4.0", "keywords": "midi", "description": "Enables MIDI I/O communications on the Arduino serial ports", "license": "MIT", @@ -17,7 +17,7 @@ "url": "https://github.com/FortySevenEffects/arduino_midi_library.git", "branch": "master" }, - "export": { + "export": { "include": [ "src", "examples" diff --git a/library.properties b/library.properties index de8a53f..2e67670 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=MIDI Library -version=4.3.1 +version=4.4.0 author=Forty Seven Effects maintainer=Francois Best sentence=MIDI I/Os for Arduino diff --git a/src/midi_Defs.h b/src/midi_Defs.h index 1c2aeaa..d0f8689 100644 --- a/src/midi_Defs.h +++ b/src/midi_Defs.h @@ -38,9 +38,9 @@ typedef uint8_t byte; BEGIN_MIDI_NAMESPACE -#define MIDI_LIBRARY_VERSION 0x040300 +#define MIDI_LIBRARY_VERSION 0x040400 #define MIDI_LIBRARY_VERSION_MAJOR 4 -#define MIDI_LIBRARY_VERSION_MINOR 3 +#define MIDI_LIBRARY_VERSION_MINOR 4 #define MIDI_LIBRARY_VERSION_PATCH 0 // -----------------------------------------------------------------------------