From 755c8cb8e0b52abea3c430e50742f716959bd3f8 Mon Sep 17 00:00:00 2001 From: Mathieu Carbou Date: Sat, 20 Apr 2024 11:48:50 +0200 Subject: [PATCH] v3.0.1 --- 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 f7700a8..756ebc0 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,4 @@ The base classes on which everything else is built. They expose all possible sce - Reverted back `library.properties` for Arduino IDE users - Arduino 3 / ESP-IDF 5 compatibility - Changed lib name: `AsyncTCP` -> `Async TCP` -- Point to `mathieucarbou/Async TCP @ ^3.0.0` +- Point to `mathieucarbou/Async TCP @ ^3.0.1` diff --git a/library.json b/library.json index 8bcf5d7..bae3736 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Async TCP", - "version": "3.0.0", + "version": "3.0.1", "description": "Asynchronous TCP Library for ESP32", "keywords": "async,tcp", "repository": { diff --git a/library.properties b/library.properties index 90a89b1..0b3e95c 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Async TCP -version=3.0.0 +version=3.0.1 author=Me-No-Dev maintainer=Mathieu Carbou sentence=Async TCP Library for ESP32 diff --git a/src/AsyncTCP.h b/src/AsyncTCP.h index 289db44..22daa63 100644 --- a/src/AsyncTCP.h +++ b/src/AsyncTCP.h @@ -22,10 +22,10 @@ #ifndef ASYNCTCP_H_ #define ASYNCTCP_H_ -#define ASYNCTCP_VERSION "3.0.0" +#define ASYNCTCP_VERSION "3.0.1" #define ASYNCTCP_VERSION_MAJOR 0 #define ASYNCTCP_VERSION_MINOR 0 -#define ASYNCTCP_VERSION_REVISION 0 +#define ASYNCTCP_VERSION_REVISION 1 #define ASYNCTCP_FORK_mathieucarbou #include "IPAddress.h"