chore: Update version & package metadata
This commit is contained in:
parent
1375b0b6aa
commit
47ce2acc16
|
|
@ -78,7 +78,7 @@ MIDI_CREATE_INSTANCE(UsbTransport, sUsbTransport, MIDI);
|
||||||
// ...
|
// ...
|
||||||
```
|
```
|
||||||
|
|
||||||
now becomes in `5.0.0`:
|
now becomes in `5.x`:
|
||||||
|
|
||||||
```c++
|
```c++
|
||||||
#include <USB-MIDI.h>
|
#include <USB-MIDI.h>
|
||||||
|
|
|
||||||
17
library.json
17
library.json
|
|
@ -1,28 +1,23 @@
|
||||||
{
|
{
|
||||||
"name": "MIDI Library",
|
"name": "MIDI Library",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"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",
|
||||||
"authors":
|
"authors": {
|
||||||
{
|
|
||||||
"name": "Francois Best",
|
"name": "Francois Best",
|
||||||
"email": "francois.best@fortyseveneffects.com",
|
"email": "contact@francoisbest.com",
|
||||||
"url": "https://github.com/Franky47",
|
"url": "https://github.com/Franky47",
|
||||||
"maintainer": true
|
"maintainer": true
|
||||||
},
|
},
|
||||||
"repository":
|
"repository": {
|
||||||
{
|
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"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", "examples"]
|
||||||
"src",
|
|
||||||
"examples"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": ["atmelavr", "atmelsam", "teensy"]
|
"platforms": ["atmelavr", "atmelsam", "teensy"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
name=MIDI Library
|
name=MIDI Library
|
||||||
version=5.0.0
|
version=5.0.1
|
||||||
author=Forty Seven Effects, lathoub
|
author=Francois Best, lathoub
|
||||||
maintainer=Francois Best <francois.best@fortyseveneffects.com>
|
maintainer=Francois Best <contact@francoisbest.com>
|
||||||
sentence=MIDI I/Os for Arduino
|
sentence=MIDI I/Os for Arduino
|
||||||
paragraph=Read & send MIDI messages to interface with your controllers and synths
|
paragraph=Read & send MIDI messages to interface with your controllers and synths
|
||||||
category=Communication
|
category=Communication
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue