From fc1ac75bc51c45246a510a7fb3755bdc9ad6676c Mon Sep 17 00:00:00 2001 From: "Zachary J. Fields" Date: Tue, 20 Aug 2024 18:21:32 -0500 Subject: [PATCH] fix: add `Wire.h` dependency --- library.properties | 3 ++- src/Notecard.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/library.properties b/library.properties index 2fbb0b5..83f8cb6 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Blues Wireless Notecard -version=1.6.1 +version=1.6.2 author=Blues maintainer=Blues sentence=An easy to use Notecard Library for Arduino. @@ -8,3 +8,4 @@ category=Communication url=https://github.com/blues/note-arduino architectures=* includes=Notecard.h +depends=Wire diff --git a/src/Notecard.h b/src/Notecard.h index d882adf..deb73f8 100644 --- a/src/Notecard.h +++ b/src/Notecard.h @@ -47,7 +47,7 @@ #define NOTE_ARDUINO_VERSION_MAJOR 1 #define NOTE_ARDUINO_VERSION_MINOR 6 -#define NOTE_ARDUINO_VERSION_PATCH 1 +#define NOTE_ARDUINO_VERSION_PATCH 2 #define NOTE_ARDUINO_VERSION NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_MAJOR) "." NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_MINOR) "." NOTE_C_STRINGIZE(NOTE_ARDUINO_VERSION_PATCH)