Skip to content

Commit 5d900f3

Browse files
committed
This is v0.9.2-pre2
1 parent 6c849cf commit 5d900f3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,9 @@ Much more elaborate uses can be found in the MCCI [Catena-Arduino-Platform](http
430430
431431
- Head includes the following changes.
432432
433-
- Correct error in logging, missing `return true` in `Arduino_LoRaWAN::cEventLog::processSingleEvent()` ([#191](https://github.com/mcci-catena/arduino-lorawan/issues/169)). This is v0.9.2-pre1.
433+
- Apply pre-release version to `library.properties` and `library.json` ([#195](https://github.com/mcci-catena/arduino-lorawan/issues/195)). This is v0.9.2-pre2.
434+
- Correct error, missing `return true` at end of `Arduino_LoRaWAN::ApplySessionState()`. ([#194])(https://github.com/mcci-catena/arduino-lorawan/issues/194)).
435+
- Correct error in logging, missing `return true` in `Arduino_LoRaWAN::cEventLog::processSingleEvent()` ([#191](https://github.com/mcci-catena/arduino-lorawan/issues/191)). This is v0.9.2-pre1.
434436
435437
- v0.9.1 includes the following changes.
436438

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"authors": ["Terry Moore <tmm@mcci.com>"]
3232
}
3333
],
34-
"version": "0.9.2-pre1",
34+
"version": "0.9.2-pre2",
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.9.2-pre1
2+
version=0.9.2-pre2
33
author=Terry Moore, ChaeHee Won
44
maintainer=Terry Moore <tmm@mcci.com>
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
@@ -34,7 +34,7 @@ Copyright notice:
3434
/// \ref ARDUINO_LORAWAN_VERSION_COMPARE_LT() to compare relative versions.
3535
///
3636
#define ARDUINO_LORAWAN_VERSION \
37-
ARDUINO_LORAWAN_VERSION_CALC(0, 9, 2, 1) /* v0.9.2-pre1 */
37+
ARDUINO_LORAWAN_VERSION_CALC(0, 9, 2, 2) /* v0.9.2-pre2 */
3838

3939
#define ARDUINO_LORAWAN_VERSION_GET_MAJOR(v) \
4040
(((v) >> 24u) & 0xFFu)

0 commit comments

Comments
 (0)