Skip to content

Commit

Permalink
Version is 3.0.99.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
terrillmoore committed Sep 2, 2019
1 parent 84c33b3 commit 17f2854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lmic/lmic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 17f2854

Please sign in to comment.