Skip to content

Commit 0ec6c7f

Browse files
committed
v3.6.2
1 parent aa2b535 commit 0ec6c7f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Discord Server: [https://discord.gg/X7zpGdyUcY](https://discord.gg/X7zpGdyUcY)
1818

1919
Please see the new links:
2020

21-
- `ESP32Async/ESPAsyncWebServer @ 3.6.1` (ESP32, ESP8266, RP2040)
21+
- `ESP32Async/ESPAsyncWebServer @ 3.6.2` (ESP32, ESP8266, RP2040)
2222
- `ESP32Async/AsyncTCP @ 3.3.2` (ESP32)
2323
- `ESP32Async/ESPAsyncTCP @ 2.0.0` (ESP8266)
2424
- `https://github.com/ESP32Async/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip` (AsyncTCP alternative for ESP32)
@@ -95,7 +95,7 @@ If you are an ESP8266 user and want to help improve current 3.x, you are more th
9595
```ini
9696
lib_compat_mode = strict
9797
lib_ldf_mode = chain
98-
lib_deps = ESP32Async/ESPAsyncWebServer @ 3.6.1
98+
lib_deps = ESP32Async/ESPAsyncWebServer @ 3.6.2
9999
```
100100

101101
**Dependencies:**
@@ -121,15 +121,15 @@ lib_ldf_mode = chain
121121
lib_deps =
122122
; ESP32Async/AsyncTCP @ 3.3.2
123123
https://github.com/ESP32Async/AsyncTCPSock/archive/refs/tags/v1.0.3-dev.zip
124-
ESP32Async/ESPAsyncWebServer @ 3.6.1
124+
ESP32Async/ESPAsyncWebServer @ 3.6.2
125125
lib_ignore =
126126
AsyncTCP
127127
ESP32Async/AsyncTCP
128128
```
129129

130130
## Performance
131131

132-
Performance of `ESP32Async/ESPAsyncWebServer @ 3.6.1`:
132+
Performance of `ESP32Async/ESPAsyncWebServer @ 3.6.2`:
133133

134134
```bash
135135
> brew install autocannon

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESPAsyncWebServer",
3-
"version": "3.6.1",
3+
"version": "3.6.2",
44
"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.",
55
"keywords": "http,async,websocket,webserver",
66
"homepage": "https://github.com/ESP32Async/ESPAsyncWebServer",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=ESP Async WebServer
22
includes=ESPAsyncWebServer.h
3-
version=3.6.1
3+
version=3.6.2
44
author=ESP32Async
55
maintainer=ESP32Async
66
sentence=Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040

src/ESPAsyncWebServer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848

4949
#include "literals.h"
5050

51-
#define ASYNCWEBSERVER_VERSION "3.6.1"
51+
#define ASYNCWEBSERVER_VERSION "3.6.2"
5252
#define ASYNCWEBSERVER_VERSION_MAJOR 3
5353
#define ASYNCWEBSERVER_VERSION_MINOR 6
54-
#define ASYNCWEBSERVER_VERSION_REVISION 1
54+
#define ASYNCWEBSERVER_VERSION_REVISION 2
5555
#define ASYNCWEBSERVER_FORK_ESP32Async
5656

5757
#ifdef ASYNCWEBSERVER_REGEX

0 commit comments

Comments
 (0)