From 6db9eef82b767720464071cdeb4badf8bdf40c80 Mon Sep 17 00:00:00 2001 From: Gil Maimon Date: Fri, 6 Aug 2021 12:51:56 +0300 Subject: [PATCH 1/2] Update library.properties --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index b37b6d7..34fcc91 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ArduinoWebsockets -version=0.5.2 +version=0.5.3 author=Gil Maimon maintainer=Gil Maimon sentence=A library for writing modern Websockets applications with Arduino. From e7d54b233d5ce3e1efd978d03b2b86a758d74edc Mon Sep 17 00:00:00 2001 From: Gil Maimon Date: Fri, 6 Aug 2021 12:54:33 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ecf0c11..3c5d128 100644 --- a/README.md +++ b/README.md @@ -327,3 +327,4 @@ Thanks for everyone who reported a bug, suggested a feature and contributed to t - **10/05/21 (v0.5.1)** - Fingerprints and Certificates in the examples were updated by [@Khoi Hoang ](https://github.com/khoih-prog). Thank you Khoi! - **29/07/21 (v0.5.2)** - Merged PR by [ONLYstcm](https://github.com/ONLYstcm) which added a (configurable) timeout for connections. Thank you ONLYstcm. +- **06/08/21 (v0.5.3)** - Merged PR by [ln-12](https://github.com/ln-12) which added a `connectSecure` method to support WSS connection with the classic interface (host, port, path). Thank you!