diff --git a/CHANGELOG.md b/CHANGELOG.md index d137e9c..3b05f73 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,14 @@ **Note:** Unreleased changes are checked in but not part of an official release (available through the Arduino IDE or PlatfomIO) yet. This allows you to test WiP features and give feedback to them. +## 1.0.1 - 2022-05-07 + +* Removed complie warnings for `SimpleFSM.cpp` +* Updated `.gitignore` + ## 1.0.0 - 2022-05-07 -- Initial release +* Initial release ## Note diff --git a/library.json b/library.json index ef0110f..2cbf36e 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "SimpleFSM", - "version": "1.0.0", + "version": "1.0.1", "keywords": "State Machine, FSM, IoT", "description": "Arduino Library that allows you to quickly define a state machine. It uses callbacks and offers several convenience functions for tracking the machine's state. Tested with Arduino, ESP8266 and ESP32.", "homepage": "https://github.com/LennartHennigs/SimpleFSM", diff --git a/library.properties b/library.properties index a11cb4e..1e61066 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SimpleFSM -version=1.0.0 +version=1.0.1 author=Lennart Hennigs maintainer=Lennart Hennigs sentence=Arduino/ESP state machine library.