Skip to content

Commit 5418d3e

Browse files
Merge pull request #91 from ESP32Async/ArduinoJson
ArduinoJson @ 7.3.1 + AsyncTCP @ 3.3.6
2 parents 06921c4 + 761bd61 commit 5418d3e

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/build-arduino.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.3.5
35+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.6
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.3.5
66+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.6
6767

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

idf_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ files:
2626
- "pre-commit.requirements.txt"
2727
dependencies:
2828
esp32async/asynctcp:
29-
version: "^3.3.5"
29+
version: "^3.3.6"
3030
require: public
3131
bblanchon/arduinojson:
32-
version: "^7.3.0"
32+
version: "^7.3.1"
3333
require: public
3434
examples:
3535
- path: ./idf_component_examples/catchall

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.3.5",
27+
"version": "^3.3.6",
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.3.5
20+
ESP32Async/AsyncTCP @ 3.3.6
2121
ESP32Async/ESpAsyncWebServer @ 3.7.0
2222

2323
custom_sdkconfig = CONFIG_LWIP_MAX_ACTIVE_TCP=32

platformio.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ monitor_filters = esp32_exception_decoder, log2file
5454
lib_compat_mode = strict
5555
lib_ldf_mode = chain
5656
lib_deps =
57-
bblanchon/ArduinoJson @ 7.3.0
58-
ESP32Async/AsyncTCP @ 3.3.5
57+
bblanchon/ArduinoJson @ 7.3.1
58+
ESP32Async/AsyncTCP @ 3.3.6
5959
board_build.partitions = partitions-4MB.csv
6060
board_build.filesystem = littlefs
6161

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

7070
[env:arduino-3-no-json]
7171
lib_deps =
72-
ESP32Async/AsyncTCP @ 3.3.5
72+
ESP32Async/AsyncTCP @ 3.3.6
7373

7474
[env:arduino-3-latest-asynctcp]
7575
lib_deps =
@@ -89,15 +89,15 @@ platform = espressif8266
8989
; board = huzzah
9090
board = d1_mini
9191
lib_deps =
92-
bblanchon/ArduinoJson @ 7.3.0
92+
bblanchon/ArduinoJson @ 7.3.1
9393
ESP32Async/ESPAsyncTCP @ 2.0.0
9494

9595
[env:raspberrypi]
9696
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
9797
board = rpipicow
9898
board_build.core = earlephilhower
9999
lib_deps =
100-
bblanchon/ArduinoJson @ 7.3.0
100+
bblanchon/ArduinoJson @ 7.3.1
101101
ayushsharma82/RPAsyncTCP@^1.3.0
102102
lib_ignore =
103103
lwIP_ESPHost
@@ -120,7 +120,7 @@ board = ${sysenv.PIO_BOARD}
120120
[env:ci-arduino-3-no-json]
121121
board = ${sysenv.PIO_BOARD}
122122
lib_deps =
123-
ESP32Async/AsyncTCP @ 3.3.5
123+
ESP32Async/AsyncTCP @ 3.3.6
124124

125125
[env:ci-arduino-3-latest-asynctcp]
126126
lib_deps =
@@ -135,15 +135,15 @@ build_flags = ${env.build_flags}
135135
platform = espressif8266
136136
board = ${sysenv.PIO_BOARD}
137137
lib_deps =
138-
bblanchon/ArduinoJson @ 7.3.0
138+
bblanchon/ArduinoJson @ 7.3.1
139139
ESP32Async/ESPAsyncTCP @ 2.0.0
140140

141141
[env:ci-raspberrypi]
142142
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#4d1acd7caac8c055c05f5ac6c68fa5f079730947
143143
board = ${sysenv.PIO_BOARD}
144144
board_build.core = earlephilhower
145145
lib_deps =
146-
bblanchon/ArduinoJson @ 7.3.0
146+
bblanchon/ArduinoJson @ 7.3.1
147147
ayushsharma82/RPAsyncTCP@^1.3.0
148148
lib_ignore =
149149
lwIP_ESPHost

0 commit comments

Comments
 (0)