diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a51a5d7..6f83300 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: - name: Install AsyncTCP (ESP32) if: ${{ matrix.core == 'esp32:esp32' }} - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.1.4 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.3 - name: Install ESPAsyncTCP (ESP8266) if: ${{ matrix.core == 'esp8266:esp8266' }} @@ -75,10 +75,10 @@ jobs: run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/khoih-prog/AsyncTCP_RP2040W#v1.2.0 - name: Install ESPAsyncWebServer - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.0.6 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.1.1 - name: Install ArduinoJson - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.0.4 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.1.0 - name: Install Preferences if: ${{ matrix.core == 'esp8266:esp8266' || matrix.core == 'rp2040:rp2040' }} @@ -105,11 +105,11 @@ jobs: - name: esp32dev|arduino-3 board: esp32dev platform: espressif32 - 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'" + 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'" - name: esp32-s3-devkitc-1|arduino-3 board: esp32-s3-devkitc-1 platform: espressif32 - 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'" + 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'" # - name: huzzah|espressif8266 # board: huzzah # platform: espressif8266 diff --git a/library.json b/library.json index 2e118aa..0922b64 100644 --- a/library.json +++ b/library.json @@ -19,13 +19,13 @@ { "owner": "bblanchon", "name": "ArduinoJson", - "version": "^7.0.4", + "version": "^7.1.0", "platforms": ["espressif8266", "espressif32", "raspberrypi"] }, { "owner": "mathieucarbou", - "name": "ESP Async WebServer", - "version": "^3.0.6", + "name": "ESPAsyncWebServer", + "version": "^3.1.1", "platforms": ["espressif8266", "espressif32", "raspberrypi"] }, { @@ -35,7 +35,7 @@ "platforms": ["espressif8266", "raspberrypi"] } ], - "version": "1.0.7", + "version": "1.0.8", "frameworks": "arduino", "platforms": ["espressif32", "raspberrypi"] } diff --git a/library.properties b/library.properties index 466c0bf..f58d9b7 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=NetWizard -version=1.0.7 +version=1.0.8 author=Ayush Sharma category=Communication maintainer=Ayush Sharma diff --git a/platformio.ini b/platformio.ini index 5752253..048d93e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -6,9 +6,9 @@ build_flags = -D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG -D NETWIZARD_USE_ASYNC_WEBSERVER=1 lib_deps = - bblanchon/ArduinoJson @ 7.0.4 - mathieucarbou/Async TCP @ ^3.1.4 - mathieucarbou/ESP Async WebServer @ 3.0.6 + bblanchon/ArduinoJson@7.1.0 + mathieucarbou/AsyncTCP@^3.2.3 + mathieucarbou/ESPAsyncWebServer@3.1.1 upload_protocol = esptool monitor_speed = 115200 monitor_filters = esp32_exception_decoder, log2file @@ -21,17 +21,17 @@ src_dir = examples/Demo [env:arduino-3] platform = espressif32 platform_packages= - platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.2 - platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.2/esp32-arduino-libs-3.0.2.zip + platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.3 + platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.3/esp32-arduino-libs-3.0.3.zip board = esp32-s3-devkitc-1 [env:esp8266] platform = espressif8266 board = huzzah lib_deps = - bblanchon/ArduinoJson @ 7.0.4 - mathieucarbou/ESP Async WebServer @ 3.0.6 - esphome/ESPAsyncTCP-esphome @ 2.0.0 + bblanchon/ArduinoJson@7.1.0 + mathieucarbou/ESPAsyncWebServer@3.1.1 + esphome/ESPAsyncTCP-esphome@2.0.0 [env:pico] platform = https://github.com/maxgerhardt/platform-raspberrypi.git