Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESP32Async/AsyncTCP @ 3.3.7 #114

Merged
merged 1 commit into from
Mar 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-esp32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: arduino-cli lib install ArduinoJson

- name: Install AsyncTCP (ESP32)
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.6
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.7

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
run: arduino-cli lib install ArduinoJson

- name: Install AsyncTCP (ESP32)
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.6
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.7

- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ files:
- "pre-commit.requirements.txt"
dependencies:
esp32async/asynctcp:
version: "^3.3.6"
version: "^3.3.7"
require: public
bblanchon/arduinojson:
version: "^7.3.1"
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{
"owner": "ESP32Async",
"name": "AsyncTCP",
"version": "^3.3.6",
"version": "^3.3.7",
"platforms": "espressif32"
},
{
Expand Down
2 changes: 1 addition & 1 deletion pioarduino_examples/IncreaseMaxSockets/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ monitor_filters = esp32_exception_decoder, log2file
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
ESP32Async/AsyncTCP @ 3.3.6
ESP32Async/AsyncTCP @ 3.3.7
ESP32Async/ESpAsyncWebServer @ 3.7.0

custom_sdkconfig = CONFIG_LWIP_MAX_ACTIVE_TCP=32
Expand Down
6 changes: 3 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
bblanchon/ArduinoJson @ 7.3.1
ESP32Async/AsyncTCP @ 3.3.6
ESP32Async/AsyncTCP @ 3.3.7
board_build.partitions = partitions-4MB.csv
board_build.filesystem = littlefs

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

[env:arduino-3-no-json]
lib_deps =
ESP32Async/AsyncTCP @ 3.3.6
ESP32Async/AsyncTCP @ 3.3.7

[env:arduino-3-latest-asynctcp]
lib_deps =
Expand Down Expand Up @@ -120,7 +120,7 @@ board = ${sysenv.PIO_BOARD}
[env:ci-arduino-3-no-json]
board = ${sysenv.PIO_BOARD}
lib_deps =
ESP32Async/AsyncTCP @ 3.3.6
ESP32Async/AsyncTCP @ 3.3.7

[env:ci-arduino-3-latest-asynctcp]
lib_deps =
Expand Down
Loading