chore: Bump version to 4.4.0
This commit is contained in:
parent
4f9e629471
commit
9b9905fb2a
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino MIDI Library"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "MIDI Library",
|
"name": "MIDI Library",
|
||||||
"version": "4.3.1",
|
"version": "4.4.0",
|
||||||
"keywords": "midi",
|
"keywords": "midi",
|
||||||
"description": "Enables MIDI I/O communications on the Arduino serial ports",
|
"description": "Enables MIDI I/O communications on the Arduino serial ports",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git",
|
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git",
|
||||||
"branch": "master"
|
"branch": "master"
|
||||||
},
|
},
|
||||||
"export": {
|
"export": {
|
||||||
"include": [
|
"include": [
|
||||||
"src",
|
"src",
|
||||||
"examples"
|
"examples"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
name=MIDI Library
|
name=MIDI Library
|
||||||
version=4.3.1
|
version=4.4.0
|
||||||
author=Forty Seven Effects
|
author=Forty Seven Effects
|
||||||
maintainer=Francois Best <francois.best@fortyseveneffects.com>
|
maintainer=Francois Best <francois.best@fortyseveneffects.com>
|
||||||
sentence=MIDI I/Os for Arduino
|
sentence=MIDI I/Os for Arduino
|
||||||
|
|
|
||||||
|
|
@ -38,9 +38,9 @@ typedef uint8_t byte;
|
||||||
|
|
||||||
BEGIN_MIDI_NAMESPACE
|
BEGIN_MIDI_NAMESPACE
|
||||||
|
|
||||||
#define MIDI_LIBRARY_VERSION 0x040300
|
#define MIDI_LIBRARY_VERSION 0x040400
|
||||||
#define MIDI_LIBRARY_VERSION_MAJOR 4
|
#define MIDI_LIBRARY_VERSION_MAJOR 4
|
||||||
#define MIDI_LIBRARY_VERSION_MINOR 3
|
#define MIDI_LIBRARY_VERSION_MINOR 4
|
||||||
#define MIDI_LIBRARY_VERSION_PATCH 0
|
#define MIDI_LIBRARY_VERSION_PATCH 0
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue