This commit is contained in:
Mathieu Carbou
2024-12-16 21:40:32 +01:00
parent 753309bca7
commit ae3bf04ef8
5 changed files with 10 additions and 10 deletions

View File

@@ -75,7 +75,7 @@ So if you need one of these feature, you will have to stick with 3.x or another
```ini ```ini
lib_compat_mode = strict lib_compat_mode = strict
lib_ldf_mode = chain lib_ldf_mode = chain
lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.1 lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.2
``` ```
**Dependencies:** **Dependencies:**
@@ -101,7 +101,7 @@ lib_ldf_mode = chain
lib_deps = lib_deps =
; mathieucarbou/AsyncTCP @ 3.3.1 ; mathieucarbou/AsyncTCP @ 3.3.1
https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
mathieucarbou/ESPAsyncWebServer @ 3.4.1 mathieucarbou/ESPAsyncWebServer @ 3.4.2
lib_ignore = lib_ignore =
AsyncTCP AsyncTCP
mathieucarbou/AsyncTCP mathieucarbou/AsyncTCP
@@ -109,7 +109,7 @@ lib_ignore =
## Performance ## Performance
Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.1`: Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.2`:
```bash ```bash
> brew install autocannon > brew install autocannon

View File

@@ -75,7 +75,7 @@ So if you need one of these feature, you will have to stick with 3.x or another
```ini ```ini
lib_compat_mode = strict lib_compat_mode = strict
lib_ldf_mode = chain lib_ldf_mode = chain
lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.1 lib_deps = mathieucarbou/ESPAsyncWebServer @ 3.4.2
``` ```
**Dependencies:** **Dependencies:**
@@ -101,7 +101,7 @@ lib_ldf_mode = chain
lib_deps = lib_deps =
; mathieucarbou/AsyncTCP @ 3.3.1 ; mathieucarbou/AsyncTCP @ 3.3.1
https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip https://github.com/mathieucarbou/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
mathieucarbou/ESPAsyncWebServer @ 3.4.1 mathieucarbou/ESPAsyncWebServer @ 3.4.2
lib_ignore = lib_ignore =
AsyncTCP AsyncTCP
mathieucarbou/AsyncTCP mathieucarbou/AsyncTCP
@@ -109,7 +109,7 @@ lib_ignore =
## Performance ## Performance
Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.1`: Performance of `mathieucarbou/ESPAsyncWebServer @ 3.4.2`:
```bash ```bash
> brew install autocannon > brew install autocannon

View File

@@ -1,6 +1,6 @@
{ {
"name": "ESPAsyncWebServer", "name": "ESPAsyncWebServer",
"version": "3.4.1", "version": "3.4.2",
"description": "Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040. Supports: WebSocket, SSE, Authentication, Arduino Json 7, File Upload, Static File serving, URL Rewrite, URL Redirect, etc.", "description": "Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040. Supports: WebSocket, SSE, Authentication, Arduino Json 7, File Upload, Static File serving, URL Rewrite, URL Redirect, etc.",
"keywords": "http,async,websocket,webserver", "keywords": "http,async,websocket,webserver",
"homepage": "https://github.com/mathieucarbou/ESPAsyncWebServer", "homepage": "https://github.com/mathieucarbou/ESPAsyncWebServer",

View File

@@ -1,6 +1,6 @@
name=ESP Async WebServer name=ESP Async WebServer
includes=ESPAsyncWebServer.h includes=ESPAsyncWebServer.h
version=3.4.1 version=3.4.2
author=Me-No-Dev author=Me-No-Dev
maintainer=Mathieu Carbou <mathieu.carbou@gmail.com> maintainer=Mathieu Carbou <mathieu.carbou@gmail.com>
sentence=Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040 sentence=Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040

View File

@@ -48,10 +48,10 @@
#include "literals.h" #include "literals.h"
#define ASYNCWEBSERVER_VERSION "3.4.1" #define ASYNCWEBSERVER_VERSION "3.4.2"
#define ASYNCWEBSERVER_VERSION_MAJOR 3 #define ASYNCWEBSERVER_VERSION_MAJOR 3
#define ASYNCWEBSERVER_VERSION_MINOR 4 #define ASYNCWEBSERVER_VERSION_MINOR 4
#define ASYNCWEBSERVER_VERSION_REVISION 1 #define ASYNCWEBSERVER_VERSION_REVISION 2
#define ASYNCWEBSERVER_FORK_mathieucarbou #define ASYNCWEBSERVER_FORK_mathieucarbou
#ifdef ASYNCWEBSERVER_REGEX #ifdef ASYNCWEBSERVER_REGEX