diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea2f3b8..3f3d1c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,10 @@ on: - "/library.properties" - "/docs" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: arduino: name: arduino ${{ matrix.name }} @@ -60,13 +64,13 @@ jobs: run: arduino-cli core install --additional-urls "${{ matrix.index_url }}" ${{ matrix.core }} - name: Install AsyncTCP - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.3 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.5 - name: Install ESPAsyncTCP run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0 - name: Install ESPAsyncWebServer - run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.1.1 + run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.2.4 - name: Build Demo run: arduino-cli compile --library . --warnings none -b ${{ matrix.board }} "examples/Demo/Demo.ino" diff --git a/docs/Written Offer for Source Code.pdf b/docs/Written Offer for Source Code.pdf deleted file mode 100644 index b9b6a62..0000000 Binary files a/docs/Written Offer for Source Code.pdf and /dev/null differ diff --git a/library.json b/library.json index 75cf561..d1f8c8a 100644 --- a/library.json +++ b/library.json @@ -19,11 +19,11 @@ { "owner": "mathieucarbou", "name": "ESPAsyncWebServer", - "version": "^3.1.1", + "version": "^3.2.4", "platforms": ["espressif8266", "espressif32"] } ], - "version": "3.1.5", + "version": "3.1.6", "frameworks": "arduino", "platforms": ["espressif8266", "espressif32", "raspberrypi"], "build": { diff --git a/library.properties b/library.properties index 631251b..7185f57 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ElegantOTA -version=3.1.5 +version=3.1.6 author=Ayush Sharma category=Communication maintainer=Ayush Sharma diff --git a/platformio.ini b/platformio.ini index c729d85..a2a1a01 100644 --- a/platformio.ini +++ b/platformio.ini @@ -6,8 +6,8 @@ build_flags = -D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG -D ELEGANTOTA_USE_ASYNC_WEBSERVER=1 lib_deps = - mathieucarbou/AsyncTCP@^3.2.3 - mathieucarbou/ESPAsyncWebServer@^3.1.1 + mathieucarbou/AsyncTCP@^3.2.5 + mathieucarbou/ESPAsyncWebServer@^3.2.4 lib_compat_mode = strict upload_protocol = esptool monitor_speed = 115200 @@ -37,7 +37,7 @@ board = esp32-s3-devkitc-1 platform = espressif8266 board = huzzah lib_deps = - mathieucarbou/ESPAsyncWebServer@^3.1.1 + mathieucarbou/ESPAsyncWebServer@^3.2.4 esphome/ESPAsyncTCP-esphome@^2.0.0 [env:pico]