Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dependency #51

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
vendor: rp2040
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand Down Expand Up @@ -89,6 +92,9 @@ jobs:
vendor: arduino
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand Down Expand Up @@ -132,6 +138,9 @@ jobs:
vendor: arduino
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand Down Expand Up @@ -219,6 +228,9 @@ jobs:
vendor: teensy
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand All @@ -243,6 +255,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand Down Expand Up @@ -281,6 +296,9 @@ jobs:
vendor: esp32
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
- name: compile example sketchs
uses: arduino/compile-sketches@v1
with:
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.4.1",
"version": "0.4.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
Expand All @@ -20,6 +20,6 @@
"hideakitai/ArxContainer": ">=0.6.0",
"hideakitai/ArxSmartPtr": "*",
"hideakitai/ArxTypeTraits": "*",
"hideakitai/DebugLog": "*"
"hideakitai/DebugLog": ">=0.8.1"
}
}
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=ArduinoOSC
version=0.4.1
version=0.4.2
author=hideakitai
maintainer=hideakitai
sentence=OSC subscriber / publisher for Arduino
paragraph=OSC subscriber / publisher for Arduino
category=Communication
url=https://github.com/hideakitai/ArduinoOSC
architectures=*
depends=ArxContainer(>=0.6.0),ArxSmartPtr,ArxTypeTraits,DebugLog
depends=ArxContainer (>=0.6.0), ArxSmartPtr, ArxTypeTraits, DebugLog (>=0.8.1)
Loading