Skip to content

Commit

Permalink
Prepare for release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCAFEDECAF committed Mar 26, 2024
1 parent d893c1c commit 3b820a9
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion examples/DisplayNotifications/DisplayNotifications.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*
Expand Down
2 changes: 1 addition & 1 deletion examples/LiveWebPage/LiveWebPage.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.3 - May, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*
Expand Down
2 changes: 1 addition & 1 deletion examples/PacketParser/PacketParser.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*
Expand Down
2 changes: 1 addition & 1 deletion examples/SendPacket/SendPacket.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*
Expand Down
2 changes: 1 addition & 1 deletion examples/VanBusDump/VanBusDump.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.3 - May, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"maintainer": true
}
],
"version": "0.3.4",
"version": "0.4.0",
"exclude": "tests",
"examples": "examples/*/*.ino",
"frameworks": "arduino",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=VanBus
version=0.3.4
version=0.4.0
author=Erik Tromp <eriktromp97@hotmail.com>
maintainer=Erik Tromp <eriktromp97@hotmail.com>
sentence=Vehicle Area Network (VAN) bus packet reader/writer.
Expand Down
2 changes: 1 addition & 1 deletion src/VanBus.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/VanBusRx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/VanBusRx.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.3.3 - May, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/VanBusTx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.2.0 - November, 2020
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/VanBusTx.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Written by Erik Tromp
*
* Version 0.2.0 - November, 2020
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/
Expand Down
10 changes: 5 additions & 5 deletions src/VanBusVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
*
* Written by Erik Tromp
*
* Version 0.3.4 - October, 2023
* Version 0.4.0 - March, 2024
*
* MIT license, all text above must be included in any redistribution.
*/

#ifndef VanBusVersion_h
#define VanBusVersion_h

#define VAN_BUS_VERSION "0.3.4"
#define VAN_BUS_VERSION "0.4.0"

#define VAN_BUS_VERSION_MAJOR 0
#define VAN_BUS_VERSION_MINOR 3
#define VAN_BUS_VERSION_PATCH 4
#define VAN_BUS_VERSION_MINOR 4
#define VAN_BUS_VERSION_PATCH 0

#define VAN_BUS_VERSION_INT 000003004
#define VAN_BUS_VERSION_INT 000004000

#define VAN_BUS_RX_VERSION VAN_BUS_VERSION_INT

Expand Down

0 comments on commit 3b820a9

Please sign in to comment.