Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 8094d27

Browse files
authored
v1.3.1 to update PIO
### Releases v1.3.1 1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix 2. Update `Packages' Patches`
1 parent 890ddc6 commit 8094d27

21 files changed

+81
-341
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.15) or Platform.io version
18-
* `ESP8266`,`ESP32` or `STM32` Core Version (e.g. ESP8266 core v3.0.1, ESP32 v1.0.6 or STM32 v2.0.0)
17+
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
18+
* `ESP8266`,`ESP32` or `STM32` Core Version (e.g. ESP8266 core v3.0.2, ESP32 v2.0.0 or STM32 v2.1.0)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -26,10 +26,10 @@ Please ensure to specify the following:
2626
### Example
2727

2828
```
29-
Arduino IDE version: 1.8.15
30-
ESP32 Core Version 1.0.6
29+
Arduino IDE version: 1.8.16
30+
ESP32 Core Version 2.0.0
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.4.0-77-generic #86-Ubuntu SMP Thu Jun 17 02:35:03 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered an endless loop while trying to connect to Local WiFi.

README.md

Lines changed: 30 additions & 311 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
## Table of Contents
1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.3.1](#releases-v131)
1516
* [Releases v1.3.0](#releases-v130)
1617
* [Releases v1.2.0](#releases-v120)
1718
* [Releases v1.1.5](#releases-v115)
@@ -29,6 +30,11 @@
2930

3031
## Changelog
3132

33+
### Releases v1.3.1
34+
35+
1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
36+
2. Update `Packages' Patches`
37+
3238
### Releases v1.3.0
3339

3440
1. Add support to WT32_ETH01 (ESP32 + LAN8720) boards

library.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"AsyncHTTPRequest_Generic",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"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.",
55
"keywords":"communication, async, tcp, http, ESP8266, ESP32, ESP32-S2, wt32-eth01, ESPAsyncTCP, AsyncTCP, stm32, ethernet, wifi, lan8742a, lan8720, f407ve, nucleo, nucleo-144, stm32f7, stm32f4",
66
"authors": [
@@ -37,9 +37,9 @@
3737
"platforms": "espressif8266"
3838
},
3939
{
40-
"owner": "khoih.prog",
40+
"owner": "khoih-prog",
4141
"name": "ESPAsync_WiFiManager",
42-
"version": ">=1.9.1",
42+
"version": ">=1.9.4",
4343
"platforms": ["espressif8266", "espressif32"]
4444
},
4545
{
@@ -61,9 +61,9 @@
6161
"platforms": ["espressif32"]
6262
},
6363
{
64-
"owner": "khoih.prog",
64+
"owner": "khoih-prog",
6565
"name": "WebServer_WT32_ETH01",
66-
"version": ">=1.1.0",
66+
"version": ">=1.2.1",
6767
"platforms": ["espressif32"]
6868
},
6969
{

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncHTTPRequest_Generic
2-
version=1.3.0
2+
version=1.3.1
33
author=Bob Lemaire,Khoi Hoang <[email protected]>
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT

platformio/platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ lib_deps =
4545
; STM32duino STM32Ethernet@>=1.2.0
4646
; ESPAsync_WiFiManager@>=1.9.3
4747
; LittleFS_esp32@>=1.0.6
48-
; WebServer_WT32_ETH01@>=1.2.0
48+
; WebServer_WT32_ETH01@>=1.2.1
4949
; PlatformIO 5.x
5050
me-no-dev/AsyncTCP@>=1.1.1
5151
me-no-dev/ESPAsyncTCP@>=1.2.2
@@ -55,7 +55,7 @@ lib_deps =
5555
stm32duino/STM32duino STM32Ethernet@>=1.2.0
5656
khoih-prog/ESPAsync_WiFiManager@>=1.9.3
5757
lorol/LittleFS_esp32@>=1.0.6
58-
khoih.prog/WebServer_WT32_ETH01@>=1.2.0
58+
khoih-prog/WebServer_WT32_ETH01@>=1.2.1
5959

6060
build_flags =
6161
; set your debug output (default=Serial)

src/AsyncHTTPRequest_Debug_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1818
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 1.3.0
20+
Version: 1.3.1
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -32,6 +32,7 @@
3232
1.1.5 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
3333
1.2.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
3434
1.3.0 K Hoang 09/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720) boards
35+
1.3.1 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3536
*****************************************************************************************************************************/
3637

3738
#pragma once

src/AsyncHTTPRequest_Generic.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1818
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 1.3.0
20+
Version: 1.3.1
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -32,14 +32,15 @@
3232
1.1.5 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
3333
1.2.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
3434
1.3.0 K Hoang 09/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720) boards
35+
1.3.1 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3536
*****************************************************************************************************************************/
3637

3738
#pragma once
3839

3940
#ifndef ASYNC_HTTP_REQUEST_GENERIC_H
4041
#define ASYNC_HTTP_REQUEST_GENERIC_H
4142

42-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION "AsyncHTTPRequest_Generic v1.3.0"
43+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION "AsyncHTTPRequest_Generic v1.3.1"
4344

4445
#include <Arduino.h>
4546

src/AsyncHTTPRequest_Impl_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1818
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 1.3.0
20+
Version: 1.3.1
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -32,6 +32,7 @@
3232
1.1.5 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
3333
1.2.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
3434
1.3.0 K Hoang 09/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720) boards
35+
1.3.1 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3536
*****************************************************************************************************************************/
3637

3738
#pragma once

src/utility/xbuf.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1818
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 1.3.0
20+
Version: 1.3.1
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -32,6 +32,7 @@
3232
1.1.5 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
3333
1.2.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
3434
1.3.0 K Hoang 09/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720) boards
35+
1.3.1 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3536
*****************************************************************************************************************************/
3637

3738
/********************************************************************************************

0 commit comments

Comments
 (0)