From 9b5f04627feab52815d5d08e88f595e985c86ec0 Mon Sep 17 00:00:00 2001 From: Mathieu Carbou Date: Sat, 27 Apr 2024 01:19:50 +0200 Subject: [PATCH] v3.1.0 --- README.md | 2 +- library.json | 2 +- library.properties | 2 +- src/AsyncTCP.h | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 09c7c5a..a6c02ca 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.2` +- Point to `mathieucarbou/Async TCP @ ^3.1.0` diff --git a/library.json b/library.json index b4ac7ab..299ff2b 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Async TCP", - "version": "3.0.2", + "version": "3.1.0", "description": "Asynchronous TCP Library for ESP32", "keywords": "async,tcp", "repository": { diff --git a/library.properties b/library.properties index af7728a..bd85cae 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Async TCP -version=3.0.2 +version=3.1.0 author=Me-No-Dev maintainer=Mathieu Carbou sentence=Async TCP Library for ESP32 diff --git a/src/AsyncTCP.h b/src/AsyncTCP.h index abb1f48..b79afc0 100644 --- a/src/AsyncTCP.h +++ b/src/AsyncTCP.h @@ -22,10 +22,10 @@ #ifndef ASYNCTCP_H_ #define ASYNCTCP_H_ -#define ASYNCTCP_VERSION "3.0.2" -#define ASYNCTCP_VERSION_MAJOR 0 -#define ASYNCTCP_VERSION_MINOR 0 -#define ASYNCTCP_VERSION_REVISION 2 +#define ASYNCTCP_VERSION "3.1.0" +#define ASYNCTCP_VERSION_MAJOR 3 +#define ASYNCTCP_VERSION_MINOR 1 +#define ASYNCTCP_VERSION_REVISION 0 #define ASYNCTCP_FORK_mathieucarbou #include "IPAddress.h"