Skip to content

Commit

Permalink
update ArxTypeTraits to v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Oct 5, 2020
1 parent a2ab1ab commit c489d6e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
// Make sure Arduino.h is actually included, since otherwise it might be
// included later and break *uses* of the min/max methods, rather than
// the declarations of it.
#include <Arduino.h>
#ifdef ARDUINO
#include <Arduino.h>
#endif

// These macros are defined by Arduino.h on some platforms, and conflict
// with min/max methods defined or included by ArxTypeTraits, so replace
Expand Down
1 change: 1 addition & 0 deletions Packetizer/util/ArxTypeTraits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ C++ type_traits for Arduino which cannot use it as default
- [Tween](https://github.com/hideakitai/Tween)
- [ArxStringUtils](https://github.com/hideakitai/ArxStringUtils)
- [Filters](https://github.com/hideakitai/Filters)
- [Debouncer](https://github.com/hideakitai/Debouncer)


## Contributors
Expand Down
2 changes: 1 addition & 1 deletion Packetizer/util/ArxTypeTraits/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.2.0",
"version": "0.2.1",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
Expand Down
2 changes: 1 addition & 1 deletion Packetizer/util/ArxTypeTraits/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArxTypeTraits
version=0.2.0
version=0.2.1
author=hideakitai
maintainer=hideakitai
sentence=C++ type_traits for Arduino which cannot use it as default
Expand Down

0 comments on commit c489d6e

Please sign in to comment.