Skip to content

Commit 76993d2

Browse files
Merge pull request #9 from ayushsharma82/dev
fix: update dependencies
2 parents 3e61ea6 + 57378c6 commit 76993d2

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Install AsyncTCP (ESP32)
6666
if: ${{ matrix.core == 'esp32:esp32' }}
67-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.1.4
67+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.3
6868

6969
- name: Install ESPAsyncTCP (ESP8266)
7070
if: ${{ matrix.core == 'esp8266:esp8266' }}
@@ -75,10 +75,10 @@ jobs:
7575
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/khoih-prog/AsyncTCP_RP2040W#v1.2.0
7676

7777
- name: Install ESPAsyncWebServer
78-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.0.6
78+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.1.1
7979

8080
- name: Install ArduinoJson
81-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.0.4
81+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.1.0
8282

8383
- name: Install Preferences
8484
if: ${{ matrix.core == 'esp8266:esp8266' || matrix.core == 'rp2040:rp2040' }}
@@ -105,11 +105,11 @@ jobs:
105105
- name: esp32dev|arduino-3
106106
board: esp32dev
107107
platform: espressif32
108-
opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip'"
108+
opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip'"
109109
- name: esp32-s3-devkitc-1|arduino-3
110110
board: esp32-s3-devkitc-1
111111
platform: espressif32
112-
opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip'"
112+
opts: "--project-option 'lib_compat_mode = strict' --project-option 'platform_packages=platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3, platform_packages=platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip'"
113113
# - name: huzzah|espressif8266
114114
# board: huzzah
115115
# platform: espressif8266

library.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
{
2020
"owner": "bblanchon",
2121
"name": "ArduinoJson",
22-
"version": "^7.0.4",
22+
"version": "^7.1.0",
2323
"platforms": ["espressif8266", "espressif32", "raspberrypi"]
2424
},
2525
{
2626
"owner": "mathieucarbou",
27-
"name": "ESP Async WebServer",
28-
"version": "^3.0.6",
27+
"name": "ESPAsyncWebServer",
28+
"version": "^3.1.1",
2929
"platforms": ["espressif8266", "espressif32", "raspberrypi"]
3030
},
3131
{
@@ -35,7 +35,7 @@
3535
"platforms": ["espressif8266", "raspberrypi"]
3636
}
3737
],
38-
"version": "1.0.7",
38+
"version": "1.0.8",
3939
"frameworks": "arduino",
4040
"platforms": ["espressif32", "raspberrypi"]
4141
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=NetWizard
2-
version=1.0.7
2+
version=1.0.8
33
author=Ayush Sharma
44
category=Communication
55
maintainer=Ayush Sharma <[email protected]>

platformio.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ build_flags =
66
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
77
-D NETWIZARD_USE_ASYNC_WEBSERVER=1
88
lib_deps =
9-
bblanchon/ArduinoJson @ 7.0.4
10-
mathieucarbou/Async TCP @ ^3.1.4
11-
mathieucarbou/ESP Async WebServer @ 3.0.6
9+
bblanchon/ArduinoJson@7.1.0
10+
mathieucarbou/AsyncTCP@^3.2.3
11+
mathieucarbou/[email protected]
1212
upload_protocol = esptool
1313
monitor_speed = 115200
1414
monitor_filters = esp32_exception_decoder, log2file
@@ -21,17 +21,17 @@ src_dir = examples/Demo
2121
[env:arduino-3]
2222
platform = espressif32
2323
platform_packages=
24-
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2
25-
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip
24+
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3
25+
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip
2626
board = esp32-s3-devkitc-1
2727

2828
[env:esp8266]
2929
platform = espressif8266
3030
board = huzzah
3131
lib_deps =
32-
bblanchon/ArduinoJson @ 7.0.4
33-
mathieucarbou/ESP Async WebServer @ 3.0.6
34-
esphome/ESPAsyncTCP-esphome @ 2.0.0
32+
bblanchon/ArduinoJson@7.1.0
33+
mathieucarbou/[email protected]
34+
esphome/ESPAsyncTCP-esphome@2.0.0
3535

3636
[env:pico]
3737
platform = https://github.com/maxgerhardt/platform-raspberrypi.git

0 commit comments

Comments
 (0)