Skip to content

Commit 7eda34f

Browse files
committed
add RP2040 as supported and bump version
1 parent 22dff65 commit 7eda34f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

library.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"keywords": "wifi, http, web, server, client, websocket",
1717
"license": "LGPL-2.1",
1818
"name": "WebSockets",
19-
"platforms": "atmelavr, espressif8266, espressif32",
19+
"platforms": "atmelavr, espressif8266, espressif32, raspberrypi",
2020
"repository": {
2121
"type": "git",
2222
"url": "https://github.com/Links2004/arduinoWebSockets.git"
2323
},
24-
"version": "2.3.7"
24+
"version": "2.4.0"
2525
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WebSockets
2-
version=2.3.7
2+
version=2.4.0
33
author=Markus Sattler
44
maintainer=Markus Sattler
55
sentence=WebSockets for Arduino (Server + Client)

src/WebSocketsVersion.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file WebSocketsVersion.h
3-
* @date 05.04.2022
3+
* @date 01.05.2023
44
* @author Markus Sattler
55
*
66
* Copyright (c) 2015 Markus Sattler. All rights reserved.
@@ -25,12 +25,12 @@
2525
#ifndef WEBSOCKETSVERSION_H_
2626
#define WEBSOCKETSVERSION_H_
2727

28-
#define WEBSOCKETS_VERSION "2.3.7"
28+
#define WEBSOCKETS_VERSION "2.4.0"
2929

3030
#define WEBSOCKETS_VERSION_MAJOR 2
31-
#define WEBSOCKETS_VERSION_MINOR 3
32-
#define WEBSOCKETS_VERSION_PATCH 7
31+
#define WEBSOCKETS_VERSION_MINOR 4
32+
#define WEBSOCKETS_VERSION_PATCH 0
3333

34-
#define WEBSOCKETS_VERSION_INT 2003007
34+
#define WEBSOCKETS_VERSION_INT 2004000
3535

3636
#endif /* WEBSOCKETSVERSION_H_ */

0 commit comments

Comments
 (0)