Skip to content

Commit 80cc513

Browse files
committed
Version bump
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 2d243bc commit 80cc513

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ with your board before submitting any issues.
2525

2626
Modem: <!-- Brand, model, variant, firmware version, ie Quectel BG96 Revision: BG96MAR02A07M1G -->
2727
Main processor board: <!-- Uno, Zero, ESP32, Particle, etc -->
28-
LoRa_AT version: <!-- always try to use the latest (0.4.0) -->
28+
LoRa_AT version: <!-- always try to use the latest (0.4.1) -->
2929
Code: <!-- Example name or paste in your code -->
3030

3131
### Scenario, steps to reproduce

ChangeLog.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2020

2121
***
2222

23-
## [0.4.0]
23+
## [0.4.1] 2025-02-24
24+
25+
### Added
26+
27+
- Added functions for proper conversion between GPS time and Unix time.
28+
- Functionality taken from [GPS Time Conversion Algorithm](https://www.andrews.edu/~tzs/timeconv/timealgorithm.html)
29+
30+
### Fixed
31+
32+
- Corrected offsets with GPS epoch times and other epoch starts
33+
34+
***
35+
36+
## [0.4.0] 2025-01-27
2437

2538
### Changed
2639

@@ -80,7 +93,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
8093

8194
***
8295

83-
[Unreleased]: https://github.com/EnviroDIY/LoRa_AT/compare/v0.4.0...HEAD
96+
[Unreleased]: https://github.com/EnviroDIY/LoRa_AT/compare/v0.4.1...HEAD
97+
[0.4.1]: https://github.com/EnviroDIY/LoRa_AT/releases/tag/v0.4.1
8498
[0.4.0]: https://github.com/EnviroDIY/LoRa_AT/releases/tag/v0.4.0
8599
[0.3.1]: https://github.com/EnviroDIY/LoRa_AT/releases/tag/v0.3.1
86100
[0.3.0]: https://github.com/EnviroDIY/LoRa_AT/releases/tag/v0.3.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.4.1

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = LoRa_AT
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 0.4.0
51+
PROJECT_NUMBER = 0.4.1
5252

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

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LoRa_AT",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A small Arduino library for AT command based LoRa Modules",
55
"keywords": "LoRa, LoRaWAN, AT commands, AT, mDOT, LoRaE5",
66
"authors": [

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=LoRa_AT
2-
version=0.4.0
2+
version=0.4.1
33
author=Sara Damiano
44
maintainer=Sara Damiano
55
sentence=A small Arduino library for AT command based LoRa Modules.

src/LoRa_AT_Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define SRC_LORA_AT_COMMON_H_
1010

1111
// The current library version number
12-
#define LORA_AT_VERSION "0.4.0"
12+
#define LORA_AT_VERSION "0.4.1"
1313

1414
#if defined(SPARK) || defined(PARTICLE)
1515
#include "Particle.h"

0 commit comments

Comments
 (0)