Skip to content

Commit 699a749

Browse files
committed
Fix #113: set version to v0.6.0
1 parent 2afe411 commit 699a749

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.5.3
1+
v0.6.0

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"authors": ["Terry Moore <[email protected]>"]
3232
}
3333
],
34-
"version": "0.5.3",
34+
"version": "0.6.0",
3535
"frameworks": "arduino",
3636
"platforms": "*"
3737
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MCCI Arduino LoRaWAN Library
2-
version=0.5.3
2+
version=0.6.0
33
author=Terry Moore, ChaeHee Won
44
maintainer=Terry Moore <[email protected]>
55
sentence=High-level library for LoRaWAN-based Arduino end-devices.

src/Arduino_LoRaWAN.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Copyright notice:
2929
#define ARDUINO_LORAWAN_VERSION_CALC(major, minor, patch, local) \
3030
(((major) << 24u) | ((minor) << 16u) | ((patch) << 8u) | (local))
3131

32-
#define ARDUINO_LORAWAN_VERSION ARDUINO_LORAWAN_VERSION_CALC(0, 5, 3, 50) /* v0.5.3.50 */
32+
#define ARDUINO_LORAWAN_VERSION ARDUINO_LORAWAN_VERSION_CALC(0, 6, 0, 0) /* v0.6.0.0 */
3333

3434
#define ARDUINO_LORAWAN_VERSION_GET_MAJOR(v) \
3535
(((v) >> 24u) & 0xFFu)

0 commit comments

Comments
 (0)