From 39b8a974afe29c0327e69f5a9ca0d18cdf956dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20B=C3=B6hlin?= Date: Fri, 29 Mar 2024 07:48:46 +0100 Subject: [PATCH] Bump --- EspNowNetworkHost/idf_component.yml | 2 +- EspNowNetworkHost/library.json | 2 +- EspNowNetworkHostDriver/idf_component.yml | 2 +- EspNowNetworkHostDriver/library.json | 2 +- EspNowNetworkNode/idf_component.yml | 2 +- EspNowNetworkNode/library.json | 2 +- README.md | 12 ++++++------ idf_component.yml | 2 +- library.json | 2 +- library.properties | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/EspNowNetworkHost/idf_component.yml b/EspNowNetworkHost/idf_component.yml index 9b2b8a6..8cdd64b 100644 --- a/EspNowNetworkHost/idf_component.yml +++ b/EspNowNetworkHost/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.4" +version: "0.6.5" description: Library for setting up a network of ESP NOW nodes - Host only url: https://github.com/Johboh/EspNowNetwork dependencies: diff --git a/EspNowNetworkHost/library.json b/EspNowNetworkHost/library.json index 4a61ec7..fa1ec5f 100644 --- a/EspNowNetworkHost/library.json +++ b/EspNowNetworkHost/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.4", + "version": "0.6.5", "license": "MIT", "repository": { diff --git a/EspNowNetworkHostDriver/idf_component.yml b/EspNowNetworkHostDriver/idf_component.yml index 108fedf..378bb68 100644 --- a/EspNowNetworkHostDriver/idf_component.yml +++ b/EspNowNetworkHostDriver/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.4" +version: "0.6.5" description: Library for setting up a network of ESP NOW nodes - Host Driver for simplifying host setup. url: https://github.com/Johboh/EspNowNetwork dependencies: diff --git a/EspNowNetworkHostDriver/library.json b/EspNowNetworkHostDriver/library.json index 2f02833..63b44da 100644 --- a/EspNowNetworkHostDriver/library.json +++ b/EspNowNetworkHostDriver/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.4", + "version": "0.6.5", "license": "MIT", "repository": { diff --git a/EspNowNetworkNode/idf_component.yml b/EspNowNetworkNode/idf_component.yml index 5b10995..c5aceb8 100644 --- a/EspNowNetworkNode/idf_component.yml +++ b/EspNowNetworkNode/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.4" +version: "0.6.5" description: Library for setting up a network of ESP NOW nodes - Node only url: https://github.com/Johboh/EspNowNetwork dependencies: diff --git a/EspNowNetworkNode/library.json b/EspNowNetworkNode/library.json index 78cfdc4..3d2fa70 100644 --- a/EspNowNetworkNode/library.json +++ b/EspNowNetworkNode/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.4", + "version": "0.6.5", "license": "MIT", "repository": { diff --git a/README.md b/README.md index 39c4db3..406afa6 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ There are a set if different variants of this library you can use. - **EspNowNetworkNode**: Use this for your nodes. This library provide a way to setup ESP-NOW and for sending messages, as well as doing OTA updates when the host indicates that a new firmware version is available. - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkNode@^0.6.4 + Johboh/EspNowNetworkNode@^0.6.5 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkNode: - version: ">=0.6.4" + version: ">=0.6.5" ``` See the [Arduino](examples/arduino/node/Node.ino) or [ESP-IDF](examples/espidf/node/main/main.cpp) for full examples. In short (this is nota complete example): ```c++ @@ -51,13 +51,13 @@ There are a set if different variants of this library you can use. - **EspNowNetworkHostDriver**: Use this for your host. This library receives messages from the nodes and forward or handle the received data by handling nodes as Devices. It also provide a way to perform firmware updates by incoperating a [Firmware Checker](src/host_driver/FirmwareChecker.h) which checks for new firmwares on a HTTP server. It is also possible to implement a custom [Firmware Checker](src/host_driver/IFirmwareChecker.h) to match your HTTP server setup. There is an example of a HTTP server to use for the firmware for the default implementation of the [Firmware Checker](src/host_driver/FirmwareChecker.h) located [here](firmware%20http%20server). - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkHostDriver@^0.6.4 + Johboh/EspNowNetworkHostDriver@^0.6.5 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkHostDriver: - version: ">=0.6.4" + version: ">=0.6.5" ``` See the [Arduino](examples/arduino/host_driver/HostDriver.ino) or [ESP-IDF](examples/espidf/host_driver/main/main.cpp) for full examples. In short (this is nota complete example): ```c++ @@ -85,13 +85,13 @@ There are a set if different variants of this library you can use. - **EspNowNetworkHost**: This is just the bare host library, without a Device Manager, Host Driver nor Firmware Checker. I still recommend using the **EspNowNetworkHostDriver**, but if you want to roll the host fully on your own, this is the library to use. - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkHost@^0.6.4 + Johboh/EspNowNetworkHost@^0.6.5 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkHost: - version: ">=0.6.4" + version: ">=0.6.5" ``` - **EspNowNetwork**: This is the legacy full library consiting of both the node and the host code (but not the host driver). Not recommended for new projects. Instead, use the induvidual libraries listed above. diff --git a/idf_component.yml b/idf_component.yml index 6880c33..44ee7e8 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.4" +version: "0.6.5" description: Library for setting up a network of ESP NOW nodes url: https://github.com/Johboh/EspNowNetwork dependencies: diff --git a/library.json b/library.json index 3a7cd96..60fc31c 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.4", + "version": "0.6.5", "license": "MIT", "repository": { diff --git a/library.properties b/library.properties index 3fe11cb..45a0dfa 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=EspNowNetwork -version=0.6.4 +version=0.6.5 author=Johan Böhlin maintainer=Johan Böhlin sentence=Library for setting up a network of ESP NOW nodes