From 54f8e860c5a9675c003fc7224d9b1833d8e04268 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Sun, 23 Jan 2022 19:20:49 -0500 Subject: [PATCH] v1.6.0 to reduce v1.5.0 breaking effect ### Releases v1.6.0 1. Reduce the breaking effect of v1.5.0 by enabling compatibility with old code to include only `AsyncHTTPRequest_Generic.h` 2. Update `Packages' Patches` --- CONTRIBUTING.md | 2 +- library.json | 6 +++--- library.properties | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f57b4cd..846830a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,7 +29,7 @@ Please ensure to specify the following: Arduino IDE version: 1.8.19 ESP32 Core Version 2.0.2 OS: Ubuntu 20.04 LTS -Linux xy-Inspiron-3593 5.4.0-91-generic #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux +Linux xy-Inspiron-3593 5.4.0-96-generic #109-Ubuntu SMP Wed Jan 12 16:49:16 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux Context: I encountered an endless loop while trying to connect to Local WiFi. diff --git a/library.json b/library.json index 4a1ea18..f4be7d6 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name":"AsyncHTTPRequest_Generic", - "version": "1.5.0", + "version": "1.6.0", "description":"Simple Async HTTP Request library, supporting GET, POST, PUT, PATCH, DELETE and HEAD, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32 (including ESP32-S2), WT32_ETH01 (ESP32 + LAN8720), ESP8266 and currently STM32 with LAN8720 or built-in LAN8742A Ethernet.", "keywords":"communication, async, tcp, http, ESP8266, ESP32, ESP32-S2, wt32-eth01, ESPAsyncTCP, AsyncTCP, stm32, ethernet, wifi, lan8742a, lan8720, f407ve, nucleo, nucleo-144, stm32f7, stm32f4", "authors": [ @@ -45,7 +45,7 @@ { "owner": "khoih-prog", "name": "ESPAsync_WiFiManager", - "version": ">=1.9.6", + "version": ">=1.11.0", "platforms": ["espressif8266", "espressif32"] }, { @@ -81,5 +81,5 @@ "frameworks": "arduino", "platforms": ["espressif8266", "espressif32", "ststm32"], "examples": "examples/*/*/*.ino", - "headers": "AsyncHTTPRequest_Generic.h" + "headers": ["AsyncHTTPRequest_Generic.h", "AsyncHTTPRequest_Generic.hpp"] } diff --git a/library.properties b/library.properties index 10080bc..c8b354e 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AsyncHTTPRequest_Generic -version=1.5.0 +version=1.6.0 author=Bob Lemaire,Khoi Hoang maintainer=Khoi Hoang license=MIT @@ -9,4 +9,4 @@ category=Communication,AsyncTCP,AsyncHTTP url=https://github.com/khoih-prog/AsyncHTTPRequest_Generic architectures=* depends=AsyncTCP,ESPAsyncTCP,ESPAsync_WiFiManager,STM32duino LwIP,STM32duino STM32Ethernet,WebServer_WT32_ETH01 -includes=AsyncHTTPRequest_Generic.h +includes=AsyncHTTPRequest_Generic.h,AsyncHTTPRequest_Generic.hpp