From f895c2ff1c3657474089dba0fe95ac5c46c6a4b9 Mon Sep 17 00:00:00 2001 From: Hpsaturn Date: Sat, 9 Jul 2022 15:13:01 +0200 Subject: [PATCH] rev033 v0.1.0 First release in PlatformIO --- .gitignore | 1 + library.json | 3 ++- src/ESP32WifiCLI.hpp | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b9f3806..6ba98e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .pio .vscode +releases diff --git a/library.json b/library.json index 7f84b85..7770be6 100644 --- a/library.json +++ b/library.json @@ -13,7 +13,7 @@ "WifiCLI", "ESP32WifiCLI" ], - "description":"Basic and extendible Wifi manager via serial command line for ESP32", + "description":"Basic and extendible Wifi CLI manager via serial command line for ESP32", "repository": { "type": "git", @@ -31,6 +31,7 @@ ".vscode", ".travis.yml", ".gitignore", + "deploy.sh", "releases", "docs", "images", diff --git a/src/ESP32WifiCLI.hpp b/src/ESP32WifiCLI.hpp index 06a4a09..2454a37 100644 --- a/src/ESP32WifiCLI.hpp +++ b/src/ESP32WifiCLI.hpp @@ -10,6 +10,9 @@ #define RW_MODE false #define RO_MODE true +#define ESP32WIFICLI_VERSION "0.1.0" +#define ESP32WIFICLI_REVISION 033 + class ESP32WifiCLICallbacks; class ESP32WifiCLI {