Skip to content

Commit e1c67fd

Browse files
authored
Merge pull request #1047 from mcci-catena/release-v6.0.1
Release v6.0.1
2 parents 0e71550 + 59576c8 commit e1c67fd

File tree

12 files changed

+20
-12
lines changed

12 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History
22

3+
## v6.0.1
4+
5+
- Fix loop overflow in SX126x `writeBuffer` ([#1041](https://github.com/mcci-catena/arduino-lmic/issues/1041)). Thanks to [@Maddocrus](https://github.com/Maddocrus) for reporting ([#1013](https://github.com/mcci-catena/arduino-lmic/issues/1013)).
6+
- Fix buffer read overrun in SX126x radio driver ([#1040](https://github.com/mcci-catena/arduino-lmic/issues/1040)).
7+
- Replace defunct forum.mcci.io links with GitHub Discussions ([#1035](https://github.com/mcci-catena/arduino-lmic/issues/1035)).
8+
- Install latest Doxygen 1.x in CI instead of distro package ([#1033](https://github.com/mcci-catena/arduino-lmic/issues/1033)).
9+
- Fix Doxygen rendering of RadioDriver.md ([#1029](https://github.com/mcci-catena/arduino-lmic/issues/1029)).
10+
311
## v6.0.0
412

513
- Add Class C continuous reception support (`LMIC_ENABLE_class_c`). See [doc/CLASS-C.md](doc/CLASS-C.md) for usage. ([#323](https://github.com/mcci-catena/arduino-lmic/issues/323), [#1019](https://github.com/mcci-catena/arduino-lmic/pull/1019))

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Arduino LMIC"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 6.0.0
41+
PROJECT_NUMBER = 6.0.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ MIT License
22

33
Copyright (C) 2014-2016 IBM Corporation
44
Copyright (c) 2015 Thomas Telkamp and Matthijs Kooijman
5-
Copyright (c) 2016-2024 MCCI Corporation
5+
Copyright (c) 2016-2026 MCCI Corporation
66

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Arduino-LMIC library ("MCCI LoRaWAN LMIC Library")
22

3-
[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lmic.svg)](https://github.com/mcci-catena/arduino-lmic/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lmic/latest.svg)](https://github.com/mcci-catena/arduino-lmic/compare/v6.0.0...master) [![Arduino CI](https://img.shields.io/github/actions/workflow/status/mcci-catena/arduino-lmic/ci-arduinocli.yml?branch=master)](https://github.com/mcci-catena/arduino-lmic/actions)
3+
[![GitHub release](https://img.shields.io/github/release/mcci-catena/arduino-lmic.svg)](https://github.com/mcci-catena/arduino-lmic/releases/latest) [![GitHub commits](https://img.shields.io/github/commits-since/mcci-catena/arduino-lmic/latest.svg)](https://github.com/mcci-catena/arduino-lmic/compare/v6.0.1...master) [![Arduino CI](https://img.shields.io/github/actions/workflow/status/mcci-catena/arduino-lmic/ci-arduinocli.yml?branch=master)](https://github.com/mcci-catena/arduino-lmic/actions)
44

55
[![API Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-blue)](https://mcci-catena.github.io/arduino-lmic/)
66

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MCCI LoRaWAN LMIC library
2-
version=6.0.0
2+
version=6.0.1
33
author=IBM, Matthijs Kooijman, Terry Moore, ChaeHee Won, Frank Rose, Tristan Webber, Benjamin Freeman, Dhinesh Kumar
44
maintainer=Terry Moore <tmm@mcci.com>
55
sentence=Arduino port of the LMIC (LoraWAN-MAC-in-C) framework provided by IBM.

src/hal/hal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* Copyright (c) 2015 Matthijs Kooijman
3-
* Copyright (c) 2018-2024 MCCI Corporation
3+
* Copyright (c) 2018-2026 MCCI Corporation
44
*
55
* All rights reserved. This program and the accompanying materials
66
* are made available under the terms of the Eclipse Public License v1.0

src/hal/hal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* Copyright (c) 2015-2016 Matthijs Kooijman
3-
* Copyright (c) 2016-2024 MCCI Corporation
3+
* Copyright (c) 2016-2026 MCCI Corporation
44
*
55
* All rights reserved. This program and the accompanying materials
66
* are made available under the terms of the Eclipse Public License v1.0

src/lmic/hal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (c) 2014-2016 IBM Corporation.
3-
* Copyright (c) 2016, 2018-2024 MCCI Corporation.
3+
* Copyright (c) 2016, 2018-2026 MCCI Corporation.
44
* All rights reserved.
55
*
66
* Redistribution and use in source and binary forms, with or without

src/lmic/lmic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2014-2016 IBM Corporation.
33
* All rights reserved.
44
*
5-
* Copyright (c) 2016-2024 MCCI Corporation.
5+
* Copyright (c) 2016-2026 MCCI Corporation.
66
* All rights reserved.
77
*
88
* Redistribution and use in source and binary forms, with or without

src/lmic/lmic.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Copyright (c) 2014-2016 IBM Corporation.
33
* Copyright (c) 2016 Matthijs Kooijman.
4-
* Copyright (c) 2016-2024 MCCI Corporation.
4+
* Copyright (c) 2016-2026 MCCI Corporation.
55
* All rights reserved.
66
*
77
* Redistribution and use in source and binary forms, with or without
@@ -106,7 +106,7 @@ extern "C"{
106106
((((major)*UINT32_C(1)) << 24) | (((minor)*UINT32_C(1)) << 16) | (((patch)*UINT32_C(1)) << 8) | (((local)*UINT32_C(1)) << 0))
107107

108108
#define ARDUINO_LMIC_VERSION \
109-
ARDUINO_LMIC_VERSION_CALC(6, 0, 1, 1) /* 6.0.1-pre1 */
109+
ARDUINO_LMIC_VERSION_CALC(6, 0, 1, 0) /* 6.0.1 */
110110

111111
#define ARDUINO_LMIC_VERSION_GET_MAJOR(v) \
112112
((((v)*UINT32_C(1)) >> 24u) & 0xFFu)

0 commit comments

Comments
 (0)