Skip to content

Commit 4480637

Browse files
committed
Prepare for release 0.4.2
1 parent 5d47986 commit 4480637

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.4.2
2+
General:
3+
* Updates for esp32 board package, major versions 2 and 3
4+
* Fix compiler warnings
5+
* Added 'compile' workflow and badge
6+
17
0.4.1
28
General:
39
* Fix compiler warnings

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ An example of an ESP32-based board is the [LilyGO TTGO T7 Mini32].
166166
For an ESP32-based board you will need the ESP32 board package installed.
167167

168168
I am currently using [version 1.0.6](https://github.com/espressif/arduino-esp32/releases/tag/1.0.6) but other versions
169-
may also be working fine. (I tested with version 1.0.6, 2.0.17 and 3.1.2.)
169+
may also be working fine. (I tested with version 1.0.6, 2.0.17 and 3.1.2 .)
170170

171171
Follow [this tutorial](https://randomnerdtutorials.com/installing-the-esp32-board-in-arduino-ide-windows-instructions/)
172172
to install the ESP32 Board Package. Alternatively, turn to

src/VanBusRx.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
*
44
* Written by Erik Tromp
55
*
6-
* Version 0.4.1 - September, 2024
7-
*
86
* MIT license, all text above must be included in any redistribution.
97
*/
108

src/VanBusRx.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
*
44
* Written by Erik Tromp
55
*
6-
* Version 0.4.1 - September, 2024
7-
*
86
* MIT license, all text above must be included in any redistribution.
97
*/
108

src/VanBusTx.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
*
44
* Written by Erik Tromp
55
*
6-
* Version 0.4.1 - September, 2024
7-
*
86
* MIT license, all text above must be included in any redistribution.
97
*/
108

src/VanBusTx.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
*
44
* Written by Erik Tromp
55
*
6-
* Version 0.4.1 - September, 2024
7-
*
86
* MIT license, all text above must be included in any redistribution.
97
*/
108

src/VanBusVersion.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
*
44
* Written by Erik Tromp
55
*
6-
* Version 0.4.1 - September, 2024
6+
* Version 0.4.2 - September, 2025
77
*
88
* MIT license, all text above must be included in any redistribution.
99
*/
1010

1111
#ifndef VanBusVersion_h
1212
#define VanBusVersion_h
1313

14-
#define VAN_BUS_VERSION "0.4.1"
14+
#define VAN_BUS_VERSION "0.4.2"
1515

1616
#define VAN_BUS_VERSION_MAJOR 0
1717
#define VAN_BUS_VERSION_MINOR 4
18-
#define VAN_BUS_VERSION_PATCH 1
18+
#define VAN_BUS_VERSION_PATCH 2
1919

20-
#define VAN_BUS_VERSION_INT 000004001
20+
#define VAN_BUS_VERSION_INT 000004002
2121

2222
#define VAN_BUS_RX_VERSION VAN_BUS_VERSION_INT
2323

0 commit comments

Comments
 (0)