Skip to content
This repository was archived by the owner on Jan 21, 2025. It is now read-only.

Commit e719d74

Browse files
committed
v3.2.0
1 parent f0402e5 commit e719d74

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"unwantedRecommendations": [
88
"ms-vscode.cpptools-extension-pack"
99
]
10-
}
10+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This fork is based on [yubox-node-org/ESPAsyncWebServer](https://github.com/yubo
1818
**WARNING** The library name was changed from `ESP Async WebServer` to `ESPAsyncWebServer` as per the Arduino Lint recommendations.
1919

2020
```
21-
mathieucarbou/ESPAsyncWebServer @ 3.1.5
21+
mathieucarbou/ESPAsyncWebServer @ 3.2.0
2222
```
2323

2424
Dependency:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This fork is based on [yubox-node-org/ESPAsyncWebServer](https://github.com/yubo
1818
**WARNING** The library name was changed from `ESP Async WebServer` to `ESPAsyncWebServer` as per the Arduino Lint recommendations.
1919

2020
```
21-
mathieucarbou/ESPAsyncWebServer @ 3.1.5
21+
mathieucarbou/ESPAsyncWebServer @ 3.2.0
2222
```
2323

2424
Dependency:

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESPAsyncWebServer",
3-
"version": "3.1.5",
3+
"version": "3.2.0",
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/mathieucarbou/ESPAsyncWebServer",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESPAsyncWebServer
2-
version=3.1.5
2+
version=3.2.0
33
author=Me-No-Dev
44
maintainer=Mathieu Carbou <[email protected]>
55
sentence=Asynchronous HTTP and WebSocket Server Library for ESP32, ESP8266 and RP2040

src/ESPAsyncWebServer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545

4646
#include "literals.h"
4747

48-
#define ASYNCWEBSERVER_VERSION "3.1.5"
48+
#define ASYNCWEBSERVER_VERSION "3.2.0"
4949
#define ASYNCWEBSERVER_VERSION_MAJOR 3
50-
#define ASYNCWEBSERVER_VERSION_MINOR 1
51-
#define ASYNCWEBSERVER_VERSION_REVISION 5
50+
#define ASYNCWEBSERVER_VERSION_MINOR 2
51+
#define ASYNCWEBSERVER_VERSION_REVISION 0
5252
#define ASYNCWEBSERVER_FORK_mathieucarbou
5353

5454
#ifdef ASYNCWEBSERVER_REGEX

0 commit comments

Comments
 (0)