Skip to content

Commit f2a7751

Browse files
release: v0.6.0
1 parent 53686b4 commit f2a7751

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# include(FetchContent)
1818
# FetchContent_Declare(midi2
1919
# GIT_REPOSITORY https://github.com/sauloverissimo/midi2.git
20-
# GIT_TAG v0.5.0)
20+
# GIT_TAG v0.6.0)
2121
# FetchContent_MakeAvailable(midi2)
2222
# endif()
2323
# endif()
@@ -50,7 +50,7 @@ if(ESP_PLATFORM)
5050
return()
5151
endif()
5252

53-
project(midi2 VERSION 0.5.0 LANGUAGES C)
53+
project(midi2 VERSION 0.6.0 LANGUAGES C)
5454

5555
# GNUInstallDirs has to come before target_include_directories so that
5656
# $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}> evaluates to the real

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Two example sketches under `examples/` (`BasicUsage`, `CIDiscovery`) appear in t
188188
`platformio.ini`:
189189

190190
```ini
191-
lib_deps = sauloverissimo/midi2 @ ^0.5.0
191+
lib_deps = sauloverissimo/midi2 @ ^0.6.0
192192
```
193193

194194
Library Manager pulls the same `src/` modular layout via `library.json` (`srcDir = src`).
@@ -200,7 +200,7 @@ Published on the [ESP Component Registry](https://components.espressif.com/compo
200200
```yaml
201201
dependencies:
202202
idf: ">=5.0"
203-
sauloverissimo/midi2: ">=0.5.0"
203+
sauloverissimo/midi2: ">=0.6.0"
204204
```
205205
206206
`idf.py reconfigure` drops the component into `managed_components/midi2/`. The `if(ESP_PLATFORM)` gate in `CMakeLists.txt` routes ESP-IDF builds to `idf_component_register` with the modular `src/midi2_*.c` set, so the same source serves IDF, Arduino, PlatformIO, and native CMake without forks.
@@ -214,7 +214,7 @@ manifest:
214214
projects:
215215
- name: midi2
216216
url: https://github.com/sauloverissimo/midi2
217-
revision: v0.5.0
217+
revision: v0.6.0
218218
path: modules/lib/midi2
219219
```
220220

dist/midi2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* THE SOFTWARE.
2323
*/
2424

25-
/* Auto-generated from midi2 v0.5.0 (reproducible: no timestamp)
25+
/* Auto-generated from midi2 v0.6.0 (reproducible: no timestamp)
2626
* https://github.com/sauloverissimo/midi2
2727
*
2828
* Portable MIDI 2.0 library (C99, zero dependencies)

dist/midi2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* THE SOFTWARE.
2323
*/
2424

25-
/* Auto-generated from midi2 v0.5.0 (reproducible: no timestamp)
25+
/* Auto-generated from midi2 v0.6.0 (reproducible: no timestamp)
2626
* https://github.com/sauloverissimo/midi2
2727
*
2828
* Portable MIDI 2.0 library (C99, zero dependencies)

idf_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
##
66
## # in your_app/main/idf_component.yml
77
## dependencies:
8-
## sauloverissimo/midi2: ">=0.5.0"
8+
## sauloverissimo/midi2: ">=0.6.0"
99
##
1010
## The Component Manager fetches midi2 into managed_components/, and
1111
## ESP-IDF picks it up as a component because the top-level CMakeLists
1212
## detects ESP_PLATFORM and calls idf_component_register at the top of
1313
## the file.
1414

1515
description: "Portable MIDI 2.0 UMP library, C99 with zero dependencies and zero allocation."
16-
version: "0.5.0"
16+
version: "0.6.0"
1717
url: "https://github.com/sauloverissimo/midi2"
1818
documentation: "https://github.com/sauloverissimo/midi2#readme"
1919
issues: "https://github.com/sauloverissimo/midi2/issues"

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "midi2",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Portable MIDI 2.0 UMP library. C99, zero dependencies, zero allocation. Runs from AVR to desktop.",
55
"keywords": "midi, midi2, ump, music, embedded, protocol",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=midi2
2-
version=0.5.0
2+
version=0.6.0
33
author=Saulo Verissimo
44
maintainer=Saulo Verissimo <sauloverissimo@gmail.com>
55
sentence=Portable MIDI 2.0 UMP library, C99 with zero dependencies and zero allocation.

0 commit comments

Comments
 (0)