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

Commit 130ae3d

Browse files
committed
Added version
1 parent 5e4e4a1 commit 130ae3d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"type": "git",
1313
"url": "https://github.com/yubox-node-org/AsyncTCPSock.git"
1414
},
15-
"version": "1.0.1-dev",
15+
"version": "1.0.2-dev",
1616
"license": "LGPL-3.0",
1717
"frameworks": "arduino",
1818
"platforms": "espressif32",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncTCPSock
2-
version=1.0.1-dev
2+
version=1.0.2-dev
33
author=avillacis
44
maintainer=avillacis
55
sentence=Reimplemented Async TCP Library for ESP32 using BSD Sockets

src/AsyncTCP.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ extern "C" {
3939
#include "lwip/sockets.h"
4040
}
4141

42+
#define ASYNCTCP_VERSION "1.0.2-dev"
43+
#define ASYNCTCP_VERSION_MAJOR 1
44+
#define ASYNCTCP_VERSION_MINOR 2
45+
#define ASYNCTCP_VERSION_REVISION 2
46+
#define ASYNCTCP_FORK_mathieucarbou
47+
4248
//If core is not defined, then we are running in Arduino or PIO
4349
#ifndef CONFIG_ASYNC_TCP_RUNNING_CORE
4450
#define CONFIG_ASYNC_TCP_RUNNING_CORE -1 //any available core

0 commit comments

Comments
 (0)