Skip to content

Commit

Permalink
Merge pull request #178 from mcci-catena/issue177
Browse files Browse the repository at this point in the history
Fix #177: Release v0.9.1
  • Loading branch information
terrillmoore authored Jul 5, 2021
2 parents a035918 + dbedfa7 commit caceeb4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**User-friendly library for using the Arduino LMIC library with The Things Network and LoRaWAN® networks.**

[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lorawan.svg)](https://github.com/mcci-catena/arduino-lorawan/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lorawan/latest.svg)](https://github.com/mcci-catena/arduino-lorawan/compare/v0.9.0...master) [![Build Status](https://travis-ci.com/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.com/mcci-catena/arduino-lorawan)
[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lorawan.svg)](https://github.com/mcci-catena/arduino-lorawan/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lorawan/latest.svg)](https://github.com/mcci-catena/arduino-lorawan/compare/v0.9.1...master) [![Build Status](https://travis-ci.com/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.com/mcci-catena/arduino-lorawan)

**Contents:**

Expand Down Expand Up @@ -428,6 +428,15 @@ Much more elaborate uses can be found in the MCCI [Catena-Arduino-Platform](http
## Release History
- v0.9.1 includes the following changes.
- Check size and tag of SessionChannelMask when restoring a session ([#169](https://github.com/mcci-catena/arduino-lorawan/issues/169)).
- Set size and tag of SessionChannelMask when saving ([#170](https://github.com/mcci-catena/arduino-lorawan/issues/170)).
- Don't use the results of ABP provisioning info for OTAA initialization unless saved SessionState is valid ([#171](https://github.com/mcci-catena/arduino-lorawan/issues/171)).
- Add a method to `Arduino_LoRaWAN` to match session state against the configuration for the LMIC. ([#172](https://github.com/mcci-catena/arduino-lorawan/issues/172)).
- Define a `SessionChannelMask` tag for CN470-like configurations, and allow for such configurations when reading the state ([#173](https://github.com/mcci-catena/arduino-lorawan/issues/173)).
- Update the standard event processor: on `EV_JOINING`, call client methods to re-initialize both the active state and the saved state according to regional defaults ([#176](https://github.com/mcci-catena/arduino-lorawan/issues/176)).
- v0.9.0 includes the following changes.
- Complete save/restore of all LMIC state ([#25](https://github.com/mcci-catena/arduino-lorawan/issues/25)). This greatly improves save/restore usability with TTN V3. Requires LMIC version v3.99.0-2 or later.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"authors": ["Terry Moore <[email protected]>"]
}
],
"version": "0.9.0",
"version": "0.9.1",
"frameworks": "arduino",
"platforms": "*"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=MCCI Arduino LoRaWAN Library
version=0.9.0
version=0.9.1
author=Terry Moore, ChaeHee Won
maintainer=Terry Moore <[email protected]>
sentence=High-level library for LoRaWAN-based Arduino end-devices.
Expand Down
2 changes: 1 addition & 1 deletion src/Arduino_LoRaWAN.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Copyright notice:
/// \ref ARDUINO_LORAWAN_VERSION_COMPARE_LT() to compare relative versions.
///
#define ARDUINO_LORAWAN_VERSION \
ARDUINO_LORAWAN_VERSION_CALC(0, 9, 1, 2) /* v0.9.1-pre2 */
ARDUINO_LORAWAN_VERSION_CALC(0, 9, 1, 0) /* v0.9.1 */

#define ARDUINO_LORAWAN_VERSION_GET_MAJOR(v) \
(((v) >> 24u) & 0xFFu)
Expand Down

0 comments on commit caceeb4

Please sign in to comment.