Skip to content

Commit c1805f5

Browse files
committed
fix MO version numbers
1 parent dc2cdaa commit c1805f5

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [1.0.2] - 2024-03-24
4+
5+
### Fixed
6+
7+
- Fix version numbers (they were `1.0.0` in the `1.0.1` release)
8+
9+
## [1.0.1] - 2024-02-27
410

511
### Fixed
612

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ If compiled with the Arduino integration:
6767

6868
- [Links2004/arduinoWebSockets](https://github.com/Links2004/arduinoWebSockets) (version `2.4.1`)
6969

70-
In case you use PlatformIO, you can copy all dependencies from `platformio.ini` into your own configuration file. Alternatively, you can install the full library with dependencies by adding `matth-x/[email protected].0` in the PIO library manager.
70+
In case you use PlatformIO, you can copy all dependencies from `platformio.ini` into your own configuration file. Alternatively, you can install the full library with dependencies by adding `matth-x/[email protected].2` in the PIO library manager.
7171

7272
## OCPP 2.0.1 and ISO 15118
7373

library.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MicroOcpp",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "OCPP 1.6 Client for microcontrollers",
55
"keywords": "OCPP, 1.6, OCPP 1.6, Smart Energy, Smart Charging, client, ESP8266, ESP32, Arduino, esp-idf, EVSE, Charge Point",
66
"repository":
@@ -47,6 +47,10 @@
4747
"LICENSE",
4848
"mkdocs.yml",
4949
"CHANGELOG.md"
50+
],
51+
"exclude": [
52+
"src/ArduinoJson.h",
53+
"src/main.cpp"
5054
]
5155
},
5256

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MicroOcpp
2-
version=1.0.0
2+
version=1.0.2
33
author=Matthias Akstaller
44
maintainer=Matthias Akstaller
55
sentence=OCPP 1.6 Client for microcontrollers

src/MicroOcpp/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define MO_VERSION "1.0.0"
1+
#define MO_VERSION "1.0.2"

0 commit comments

Comments
 (0)