Skip to content

Commit

Permalink
fix MO version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
matth-x committed Mar 24, 2024
1 parent dc2cdaa commit c1805f5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## [Unreleased]
## [1.0.2] - 2024-03-24

### Fixed

- Fix version numbers (they were `1.0.0` in the `1.0.1` release)

## [1.0.1] - 2024-02-27

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If compiled with the Arduino integration:

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

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.
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.

## OCPP 2.0.1 and ISO 15118

Expand Down
6 changes: 5 additions & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MicroOcpp",
"version": "1.0.0",
"version": "1.0.2",
"description": "OCPP 1.6 Client for microcontrollers",
"keywords": "OCPP, 1.6, OCPP 1.6, Smart Energy, Smart Charging, client, ESP8266, ESP32, Arduino, esp-idf, EVSE, Charge Point",
"repository":
Expand Down Expand Up @@ -47,6 +47,10 @@
"LICENSE",
"mkdocs.yml",
"CHANGELOG.md"
],
"exclude": [
"src/ArduinoJson.h",
"src/main.cpp"
]
},

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=MicroOcpp
version=1.0.0
version=1.0.2
author=Matthias Akstaller
maintainer=Matthias Akstaller
sentence=OCPP 1.6 Client for microcontrollers
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MO_VERSION "1.0.0"
#define MO_VERSION "1.0.2"

0 comments on commit c1805f5

Please sign in to comment.