Skip to content

Commit

Permalink
fix: dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Feb 14, 2024
1 parent 8a64d94 commit 47299ed
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,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 @@ -99,7 +102,7 @@ jobs:
- examples/nested
- examples/nested_custom_class
- examples/simple
- tests
- examples/tests
libraries: |
- source-path: ./
- name: ArxContainer
Expand Down
2 changes: 1 addition & 1 deletion MsgPack/Unpacker.h
Original file line number Diff line number Diff line change
Expand Up @@ -1994,7 +1994,7 @@ namespace msgpack {
U u;
unpack(t);
unpack(u);
mp.emplace(make_pair(t, u));
mp.emplace(std::make_pair(t, u));
}
}
}
Expand Down
File renamed without changes.
File renamed without changes.
Binary file added examples/tests/cpp/main
Binary file not shown.
File renamed without changes.
File renamed without changes.
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,14 +11,14 @@
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.4.1",
"version": "0.4.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
"dependencies":
{
"hideakitai/ArxContainer": ">=0.6.0",
"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=MsgPack
version=0.4.1
version=0.4.2
author=hideakitai
maintainer=hideakitai
sentence=MessagePack implementation for Arduino (compatible with other C++ apps)
paragraph=MessagePack implementation for Arduino (compatible with other C++ apps)
category=Communication
url=https://github.com/hideakitai/MsgPack
architectures=*
depends=ArxContainer(>=0.6.0),ArxTypeTraits,DebugLog
depends=ArxContainer (>=0.6.0), ArxTypeTraits, DebugLog (>=0.8.1)

0 comments on commit 47299ed

Please sign in to comment.