Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit 66fba39

Browse files
Merge branch 'main' into remove-libCompatMode
2 parents 9423a17 + 014dc3e commit 66fba39

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install AsyncTCP (ESP32)
5757
if: ${{ matrix.core == 'esp32:esp32' }}
58-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.3.1
58+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.3.2
5959

6060
- name: Install ESPAsyncTCP (ESP8266)
6161
if: ${{ matrix.core == 'esp8266:esp8266' }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.5
8282

8383
**Dependencies:**
8484

85-
- **ESP32 with AsyncTCP**: `mathieucarbou/AsyncTCP @ 3.3.1`
86-
Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.3.1](https://github.com/mathieucarbou/AsyncTCP/releases)
85+
- **ESP32 with AsyncTCP**: `mathieucarbou/AsyncTCP @ 3.3.2`
86+
Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.3.2](https://github.com/mathieucarbou/AsyncTCP/releases)
8787

8888
- **ESP32 with AsyncTCPSock**: `https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip`
8989

@@ -101,7 +101,7 @@ AsyncTCPSock can be used instead of AsyncTCP by excluding AsyncTCP from the libr
101101
lib_compat_mode = strict
102102
lib_ldf_mode = chain
103103
lib_deps =
104-
; mathieucarbou/AsyncTCP @ 3.3.1
104+
; mathieucarbou/AsyncTCP @ 3.3.2
105105
https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
106106
mathieucarbou/ESPAsyncWebServer @ 3.4.5
107107
lib_ignore =
@@ -118,7 +118,7 @@ Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.5`:
118118
> autocannon -c 10 -w 10 -d 20 http://192.168.4.1
119119
```
120120

121-
With `mathieucarbou/AsyncTCP @ 3.3.1`
121+
With `mathieucarbou/AsyncTCP @ 3.3.2`
122122

123123
[![](https://mathieu.carbou.me/ESPAsyncWebServer/perf-c10.png)](https://mathieu.carbou.me/ESPAsyncWebServer/perf-c10.png)
124124

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.5
8282

8383
**Dependencies:**
8484

85-
- **ESP32 with AsyncTCP**: `mathieucarbou/AsyncTCP @ 3.3.1`
86-
Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.3.1](https://github.com/mathieucarbou/AsyncTCP/releases)
85+
- **ESP32 with AsyncTCP**: `mathieucarbou/AsyncTCP @ 3.3.2`
86+
Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.3.2](https://github.com/mathieucarbou/AsyncTCP/releases)
8787

8888
- **ESP32 with AsyncTCPSock**: `https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip`
8989

@@ -101,7 +101,7 @@ AsyncTCPSock can be used instead of AsyncTCP by excluding AsyncTCP from the libr
101101
lib_compat_mode = strict
102102
lib_ldf_mode = chain
103103
lib_deps =
104-
; mathieucarbou/AsyncTCP @ 3.3.1
104+
; mathieucarbou/AsyncTCP @ 3.3.2
105105
https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
106106
mathieucarbou/ESPAsyncWebServer @ 3.4.5
107107
lib_ignore =
@@ -118,7 +118,7 @@ Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.5`:
118118
> autocannon -c 10 -w 10 -d 20 http://192.168.4.1
119119
```
120120

121-
With `mathieucarbou/AsyncTCP @ 3.3.1`
121+
With `mathieucarbou/AsyncTCP @ 3.3.2`
122122

123123
[![](https://mathieu.carbou.me/ESPAsyncWebServer/perf-c10.png)](https://mathieu.carbou.me/ESPAsyncWebServer/perf-c10.png)
124124

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{
3333
"owner": "mathieucarbou",
3434
"name": "AsyncTCP",
35-
"version": "^3.3.1",
35+
"version": "^3.3.2",
3636
"platforms": "espressif32"
3737
},
3838
{

platformio.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ lib_deps =
3131
; bblanchon/ArduinoJson @ 5.13.4
3232
; bblanchon/ArduinoJson @ 6.21.5
3333
bblanchon/ArduinoJson @ 7.3.0
34-
mathieucarbou/AsyncTCP @ 3.3.1
34+
mathieucarbou/AsyncTCP @ 3.3.2
3535
board = esp32dev
3636
board_build.partitions = partitions-4MB.csv
3737
board_build.filesystem = littlefs
@@ -49,7 +49,7 @@ platform = https://github.com/pioarduino/platform-espressif32/releases/download/
4949
; board = esp32-s3-devkitc-1
5050
; board = esp32-c6-devkitc-1
5151
lib_deps =
52-
mathieucarbou/AsyncTCP @ 3.3.1
52+
mathieucarbou/AsyncTCP @ 3.3.2
5353

5454
[env:arduino-310]
5555
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.10/platform-espressif32.zip
@@ -102,7 +102,7 @@ board = ${sysenv.PIO_BOARD}
102102
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.05/platform-espressif32.zip
103103
board = ${sysenv.PIO_BOARD}
104104
lib_deps =
105-
mathieucarbou/AsyncTCP @ 3.3.1
105+
mathieucarbou/AsyncTCP @ 3.3.2
106106

107107
[env:ci-arduino-310]
108108
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.10/platform-espressif32.zip

0 commit comments

Comments
 (0)