From 366b1ef8caa9f5211145dee68974b14f00ecb88a Mon Sep 17 00:00:00 2001 From: Jouva Moufette Date: Sat, 10 Feb 2024 22:26:24 -0500 Subject: [PATCH] Update sysinfo command version info, and bump version The past 2 updates (1.2.0 and 1.2.1) did not update the internal definition of the version number. This commit bumps the library information to the next version that can be tagged, and sets the ESP32CONSOLE_VERSION macro up to date with the library information. Resolves #14 --- library.json | 4 ++-- library.properties | 2 +- src/ESP32Console.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/library.json b/library.json index 5e4cb71..d9b169e 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "ESP32Console", - "version": "1.2.1", + "version": "1.2.2", "description": "Extensible UART console for ESP32 with useful included commands. This library encapsules the console component of ESP-IDF and make them easy to use in an Arduino environment.", "keywords": "esp32, console, ping, ifconfig, sysinfo, editor, file", "repository": @@ -27,4 +27,4 @@ ], "frameworks": "arduino", "platforms": "espressif32" - } \ No newline at end of file + } diff --git a/library.properties b/library.properties index dc0e0a6..dd89652 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ESP32Console -version=1.2.1 +version=1.2.2 author=Jan Böhmer maintainer=Jan Böhmer sentence=Extensible UART console for ESP32 with useful included commands. diff --git a/src/ESP32Console.h b/src/ESP32Console.h index 4ca682d..e8ba94d 100644 --- a/src/ESP32Console.h +++ b/src/ESP32Console.h @@ -4,9 +4,9 @@ #error This library depends on ESP-IDF and only works on ESP32! #endif -#define ESP32CONSOLE_VERSION "1.1.0" +#define ESP32CONSOLE_VERSION "1.2.2" #include "ESP32Console/Console.h" #include "ESP32Console/ConsoleCommand.h" #include "ESP32Console/ConsoleCommandD.h" -#include "ESP32Console/OptionsConsoleCommand.h" \ No newline at end of file +#include "ESP32Console/OptionsConsoleCommand.h"