Skip to content

Commit a04974a

Browse files
Merge pull request #174 from ESP32Async/asynctcp
AsyncTCP v3.4.1
2 parents 180d6fe + 7be16c9 commit a04974a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build-esp32.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: arduino-cli lib install ArduinoJson
3333

3434
- name: Install AsyncTCP (ESP32)
35-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.4.0
35+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.4.1
3636

3737
- name: Checkout
3838
uses: actions/checkout@v4
@@ -63,7 +63,7 @@ jobs:
6363
run: arduino-cli lib install ArduinoJson
6464

6565
- name: Install AsyncTCP (ESP32)
66-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.4.0
66+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.4.1
6767

6868
- name: Checkout
6969
uses: actions/checkout@v4

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
version: "^3.1.1"
3030
require: public
3131
esp32async/asynctcp:
32-
version: "^3.4.0"
32+
version: "^3.4.1"
3333
require: public
3434
bblanchon/arduinojson:
3535
version: "^7.4.1"

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{
2525
"owner": "ESP32Async",
2626
"name": "AsyncTCP",
27-
"version": "^3.4.0",
27+
"version": "^3.4.1",
2828
"platforms": "espressif32"
2929
},
3030
{

pioarduino_examples/IncreaseMaxSockets/platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ monitor_filters = esp32_exception_decoder, log2file
1717
lib_compat_mode = strict
1818
lib_ldf_mode = chain
1919
lib_deps =
20-
ESP32Async/AsyncTCP @ 3.4.0
20+
ESP32Async/AsyncTCP @ 3.4.1
2121
ESP32Async/ESpAsyncWebServer @ 3.7.0
2222

2323
custom_sdkconfig = CONFIG_LWIP_MAX_ACTIVE_TCP=32

platformio.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ lib_compat_mode = strict
5959
lib_ldf_mode = chain
6060
lib_deps =
6161
bblanchon/ArduinoJson @ 7.4.1
62-
ESP32Async/AsyncTCP @ 3.4.0
62+
ESP32Async/AsyncTCP @ 3.4.1
6363
board_build.partitions = partitions-4MB.csv
6464
board_build.filesystem = littlefs
6565

@@ -73,7 +73,7 @@ platform = https://github.com/pioarduino/platform-espressif32/releases/download/
7373

7474
[env:arduino-3-no-json]
7575
lib_deps =
76-
ESP32Async/AsyncTCP @ 3.4.0
76+
ESP32Async/AsyncTCP @ 3.4.1
7777

7878
[env:arduino-3-latest-asynctcp]
7979
lib_deps =
@@ -124,7 +124,7 @@ board = ${sysenv.PIO_BOARD}
124124
[env:ci-arduino-3-no-json]
125125
board = ${sysenv.PIO_BOARD}
126126
lib_deps =
127-
ESP32Async/AsyncTCP @ 3.4.0
127+
ESP32Async/AsyncTCP @ 3.4.1
128128

129129
[env:ci-arduino-3-latest-asynctcp]
130130
lib_deps =

0 commit comments

Comments
 (0)