From eaca16947e6bc6ab10bd1b3dc39a4c5d96056959 Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Thu, 27 Dec 2018 12:08:18 -0500 Subject: [PATCH 1/2] Fix #70: prepare release v0.5.2 --- README.md | 4 +++- VERSION.txt | 2 +- library.properties | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4e6141c..3f9e1cb 100644 --- a/README.md +++ b/README.md @@ -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.5.1...master) [![Build Status](https://travis-ci.org/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.org/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.5.2...master) [![Build Status](https://travis-ci.org/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.org/mcci-catena/arduino-lorawan) **Contents** @@ -167,6 +167,8 @@ void setup() { ## Release History +- v0.5.2 incorporates the fix for issue [#68](https://github.com/mcci-catena/arduino-lorawan/issues/68), missing return in `Arduino_LoRaWAN::begin()`. + - v0.5.1 fixes compilation errors when the library manager installs arduino-lmic in a renamed directory (issue [#65](https://github.com/mcci-catena/arduino-lorawan/issues/65)). - v0.5.0 has necessary changes to support the LMIC built-in pinmaps, while retaining support for user-supplied pinmaps. We moved the pinmap parameter from compile-time initialization to an argument to Arduino_LoRaWAN::begin(). This is, unfortunately, a breaking change. Either do as we did in the example -- move the pinmap to the `begin()` call -- or add an `m_pinmap` field in your concrete `cMyLoRaWAN`, and initialize it in your `cMyLoRaWAN::cMyLoRaWAN()` constructor. In addition, we added a few example programs (issue [#49](https://github.com/mcci-catena/arduino-lorawan/issues/49)), and fixed handling of downlink messages with port numbers but no payloads (issue [#50](https://github.com/mcci-catena/arduino-lorawan/issues/50)). diff --git a/VERSION.txt b/VERSION.txt index 992ac75..b0c2058 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.5.1 +v0.5.2 diff --git a/library.properties b/library.properties index c4d1c37..a0589cb 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=MCCI Arduino LoRaWAN Library -version=0.5.1 +version=0.5.2 author=Terry Moore, ChaeHee Won maintainer=Terry Moore sentence=High-level library for LoRaWAN-based Arduino end-devices. From 92a419c5a7a0f660ae3cf1788de3d1fab81f121e Mon Sep 17 00:00:00 2001 From: Terry Moore Date: Thu, 27 Dec 2018 12:34:03 -0500 Subject: [PATCH 2/2] With rename of ADK for Arduinio, we broke platformio --- library.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library.json b/library.json index bdd7613..e9f3e74 100644 --- a/library.json +++ b/library.json @@ -26,12 +26,12 @@ "authors": ["Matthijs Kooijman ", "Terry Moore "] }, { - "name": "Catena MCCI Arduino Development Kit (ADK)", + "name": "MCCI Arduino Development Kit ADK", "version": "https://github.com/mcci-catena/Catena-mcciadk.git", "authors": ["Terry Moore "] } ], - "version": "0.5.1", + "version": "0.5.2", "frameworks": "arduino", "platforms": "*" }