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

Commit 0f71c51

Browse files
committed
v3.2.1
1 parent 74e0008 commit 0f71c51

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
.lh
33
/.pio
44
/.vscode/*
5-
!/.vscode/settings.json
6-
!/.vscode/extensions.json
75
/logs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ This fork is based on [yubox-node-org/ESPAsyncWebServer](https://github.com/yubo
2020
**WARNING** The library name was changed from `ESP Async WebServer` to `ESPAsyncWebServer` as per the Arduino Lint recommendations.
2121

2222
```
23-
mathieucarbou/ESPAsyncWebServer @ 3.2.0
23+
mathieucarbou/ESPAsyncWebServer @ 3.2.1
2424
```
2525

2626
Dependency:
2727

28-
- **ESP32**: `mathieucarbou/AsyncTCP @ 3.2.4` (Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.2.4](https://github.com/mathieucarbou/AsyncTCP/releases/tag/v3.2.0))
28+
- **ESP32**: `mathieucarbou/AsyncTCP @ 3.2.4` (Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.2.4](https://github.com/mathieucarbou/AsyncTCP/releases))
2929
- **ESP8266**: `esphome/ESPAsyncTCP-esphome @ 2.0.0` (Arduino IDE: [https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0](https://github.com/mathieucarbou/esphome-ESPAsyncTCP/releases/tag/v2.0.0))
3030
- **RP2040**: `khoih-prog/AsyncTCP_RP2040W @ 1.2.0` (Arduino IDE: [https://github.com/khoih-prog/AsyncTCP_RP2040W#v1.2.0](https://github.com/khoih-prog/AsyncTCP_RP2040W/releases/tag/v1.2.0))
3131

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ This fork is based on [yubox-node-org/ESPAsyncWebServer](https://github.com/yubo
2020
**WARNING** The library name was changed from `ESP Async WebServer` to `ESPAsyncWebServer` as per the Arduino Lint recommendations.
2121

2222
```
23-
mathieucarbou/ESPAsyncWebServer @ 3.2.0
23+
mathieucarbou/ESPAsyncWebServer @ 3.2.1
2424
```
2525

2626
Dependency:
2727

28-
- **ESP32**: `mathieucarbou/AsyncTCP @ 3.2.4` (Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.2.4](https://github.com/mathieucarbou/AsyncTCP/releases/tag/v3.2.0))
28+
- **ESP32**: `mathieucarbou/AsyncTCP @ 3.2.4` (Arduino IDE: [https://github.com/mathieucarbou/AsyncTCP#v3.2.4](https://github.com/mathieucarbou/AsyncTCP/releases))
2929
- **ESP8266**: `esphome/ESPAsyncTCP-esphome @ 2.0.0` (Arduino IDE: [https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0](https://github.com/mathieucarbou/esphome-ESPAsyncTCP/releases/tag/v2.0.0))
3030
- **RP2040**: `khoih-prog/AsyncTCP_RP2040W @ 1.2.0` (Arduino IDE: [https://github.com/khoih-prog/AsyncTCP_RP2040W#v1.2.0](https://github.com/khoih-prog/AsyncTCP_RP2040W/releases/tag/v1.2.0))
3131

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.2.0",
3+
"version": "3.2.1",
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.2.0
2+
version=3.2.1
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545

4646
#include "literals.h"
4747

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

5454
#ifdef ASYNCWEBSERVER_REGEX

0 commit comments

Comments
 (0)