Skip to content

Commit 9a4b8b6

Browse files
author
Francois Best
committed
Merge branch 'master' into dev.
2 parents 77bb518 + de51bcf commit 9a4b8b6

15 files changed

+9
-18
lines changed

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino MIDI Library"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Version 4.3"
41+
PROJECT_NUMBER = "Version 4.3.1"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

library.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MIDI Library",
3-
"version": "4.3",
3+
"version": "4.3.1",
44
"keywords": "midi",
55
"description": "Enables MIDI I/O communications on the Arduino serial ports",
66
"license": "MIT",
@@ -17,9 +17,12 @@
1717
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git",
1818
"branch": "master"
1919
},
20-
"downloadUrl": "https://github.com/FortySevenEffects/arduino_midi_library/releases/tag/4.3",
21-
"include": "src",
22-
"examples": "examples/*/*.ino",
20+
"export": {
21+
"include": [
22+
"src",
23+
"examples"
24+
]
25+
},
2326
"frameworks": "arduino",
2427
"platforms": ["atmelavr", "atmelsam", "teensy"]
2528
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MIDI Library
2-
version=4.2.0
2+
version=4.3.1
33
author=Forty Seven Effects
44
maintainer=Francois Best <francois.best@fortyseveneffects.com>
55
sentence=MIDI I/Os for Arduino

src/MIDI.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file MIDI.cpp
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino
5-
* @version 4.3
65
* @author Francois Best
76
* @date 24/02/11
87
* @license MIT - Copyright (c) 2015 Francois Best

src/MIDI.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file MIDI.h
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino
5-
* @version 4.3
65
* @author Francois Best
76
* @date 24/02/11
87
* @license MIT - Copyright (c) 2015 Francois Best

src/MIDI.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file MIDI.hpp
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino - Inline implementations
5-
* @version 4.3
65
* @author Francois Best
76
* @date 24/02/11
87
* @license MIT - Copyright (c) 2015 Francois Best

src/midi_Defs.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file midi_Defs.h
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino - Definitions
5-
* @version 4.3
65
* @author Francois Best
76
* @date 24/02/11
87
* @license MIT - Copyright (c) 2015 Francois Best

src/midi_Message.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file midi_Message.h
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino - Message struct definition
5-
* @version 4.3
65
* @author Francois Best
76
* @date 11/06/14
87
* @license MIT - Copyright (c) 2015 Francois Best

src/midi_Namespace.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file midi_Namespace.h
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for the Arduino - Namespace declaration
5-
* @version 4.3
65
* @author Francois Best
76
* @date 24/02/11
87
* @license MIT - Copyright (c) 2015 Francois Best

src/midi_RingBuffer.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* @file midi_RingBuffer.h
33
* Project Arduino MIDI Library
44
* @brief MIDI Library for Arduino - Ring Buffer
5-
* @version 4.3
65
* @author Francois Best
76
* @date 10/10/2016
87
* @license MIT - Copyright (c) 2016 Francois Best

0 commit comments

Comments
 (0)