Skip to content

Commit 360b8a4

Browse files
Merge pull request #226 from mcci-catena/issue225
Fix #225: prepare release v0.10.0
2 parents 97036fa + 8f3fe31 commit 360b8a4

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016-2022 MCCI Corporation
3+
Copyright (c) 2016-2023 MCCI Corporation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
[![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.2...master) [![Build Status](https://travis-ci.com/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.com/mcci-catena/arduino-lorawan)
5+
[![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.10.0...master) [![Build Status](https://travis-ci.com/mcci-catena/arduino-lorawan.svg?branch=master)](https://travis-ci.com/mcci-catena/arduino-lorawan)
66

77
**Contents:**
88

@@ -428,9 +428,10 @@ Much more elaborate uses can be found in the MCCI [Catena-Arduino-Platform](http
428428
429429
## Release History
430430
431-
- v0.10.0-pre1 includes the following changes.
431+
- v0.10.0 includes the following changes.
432432
433-
- examples/arduino_lorawan_esp32_example: @matthias-bs Added pin mappings for some common ESP32 LoRaWAN boards
433+
- examples/arduino_lorawan_esp32_example: @matthias-bs Added pin mappings for some common ESP32 LoRaWAN boards.
434+
- Added return statement on `Arduino_LoRaWAN::setFrequency()`.
434435
435436
- v0.9.2 includes the following changes.
436437

library.json

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

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MCCI Arduino LoRaWAN Library
2-
version=0.10.0-pre1
2+
version=0.10.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

+1-1
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, 10, 0, 1) /* v0.10.0-pre1 */
37+
ARDUINO_LORAWAN_VERSION_CALC(0, 10, 0, 0) /* v0.10.0 */
3838

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

0 commit comments

Comments
 (0)