From 700ad8850d1b6d834c9ff9d2038d6f845158cd44 Mon Sep 17 00:00:00 2001 From: Mathieu Carbou Date: Wed, 17 Jul 2024 21:50:06 +0200 Subject: [PATCH] v3.2.3 --- README.md | 2 +- library.json | 2 +- library.properties | 2 +- src/AsyncTCP.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fa6cf9f..5459951 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The base classes on which everything else is built. They expose all possible sce - All improvements from [ESPHome fork](https://github.com/esphome/AsyncTCP) - Reverted back `library.properties` for Arduino IDE users - Arduino 3 / ESP-IDF 5 compatibility -- Point to `mathieucarbou/AsyncTCP @ ^3.2.2` +- Point to `mathieucarbou/AsyncTCP @ ^3.2.3` - IPv6 support ## Important recommendations diff --git a/library.json b/library.json index 5d4c4b4..e965d44 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "AsyncTCP", - "version": "3.2.2", + "version": "3.2.3", "description": "Asynchronous TCP Library for ESP32", "keywords": "async,tcp", "repository": { diff --git a/library.properties b/library.properties index d9d5cb0..a50f4ca 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AsyncTCP -version=3.2.2 +version=3.2.3 author=Me-No-Dev maintainer=Mathieu Carbou sentence=Async TCP Library for ESP32 diff --git a/src/AsyncTCP.h b/src/AsyncTCP.h index eb9c769..3d2f56c 100644 --- a/src/AsyncTCP.h +++ b/src/AsyncTCP.h @@ -22,10 +22,10 @@ #ifndef ASYNCTCP_H_ #define ASYNCTCP_H_ -#define ASYNCTCP_VERSION "3.2.2" +#define ASYNCTCP_VERSION "3.2.3" #define ASYNCTCP_VERSION_MAJOR 3 #define ASYNCTCP_VERSION_MINOR 2 -#define ASYNCTCP_VERSION_REVISION 2 +#define ASYNCTCP_VERSION_REVISION 3 #define ASYNCTCP_FORK_mathieucarbou #include "IPAddress.h"