From 17f2854e111a5fa83e49f97944c4aa8bd2dcb1a6 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Mon, 2 Sep 2019 13:58:02 -0400 Subject: [PATCH] Version is 3.0.99.0 Semantic Versions require that we bump the version on a breaking change, and #388 is certainly that; many apps may stop working unless they really accomodate the packet size changing based on the current data rate. --- src/lmic/lmic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lmic/lmic.h b/src/lmic/lmic.h index df116f19..4d0bcccf 100644 --- a/src/lmic/lmic.h +++ b/src/lmic/lmic.h @@ -105,7 +105,7 @@ extern "C"{ #define ARDUINO_LMIC_VERSION_CALC(major, minor, patch, local) \ (((major) << 24u) | ((minor) << 16u) | ((patch) << 8u) | (local)) -#define ARDUINO_LMIC_VERSION ARDUINO_LMIC_VERSION_CALC(2, 3, 2, 75) /* v2.3.2.75 */ +#define ARDUINO_LMIC_VERSION ARDUINO_LMIC_VERSION_CALC(3, 0, 99, 0) /* v3.0.99.0 */ #define ARDUINO_LMIC_VERSION_GET_MAJOR(v) \ (((v) >> 24u) & 0xFFu)