diff --git a/EspNowNetworkHost/idf_component.yml b/EspNowNetworkHost/idf_component.yml index 571e47c..ba47db1 100644 --- a/EspNowNetworkHost/idf_component.yml +++ b/EspNowNetworkHost/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.2" +version: "0.6.1" 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 5048aef..8b509fe 100644 --- a/EspNowNetworkHost/library.json +++ b/EspNowNetworkHost/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.2", + "version": "0.6.1", "license": "MIT", "repository": { diff --git a/EspNowNetworkHostDriver/idf_component.yml b/EspNowNetworkHostDriver/idf_component.yml index 7f00d97..ca32468 100644 --- a/EspNowNetworkHostDriver/idf_component.yml +++ b/EspNowNetworkHostDriver/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.2" +version: "0.6.1" 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 8d3183f..9da8796 100644 --- a/EspNowNetworkHostDriver/library.json +++ b/EspNowNetworkHostDriver/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.2", + "version": "0.6.1", "license": "MIT", "repository": { diff --git a/EspNowNetworkNode/idf_component.yml b/EspNowNetworkNode/idf_component.yml index 7253b50..d0da281 100644 --- a/EspNowNetworkNode/idf_component.yml +++ b/EspNowNetworkNode/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.2" +version: "0.6.1" 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 86b8681..4a1f50b 100644 --- a/EspNowNetworkNode/library.json +++ b/EspNowNetworkNode/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.2", + "version": "0.6.1", "license": "MIT", "repository": { diff --git a/README.md b/README.md index b416284..83ff74c 100644 --- a/README.md +++ b/README.md @@ -22,35 +22,35 @@ There are a set if different variants of this library you can use. - **EspNowNetworkNode**: This is the node only code. Use this in your node project. - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkNode@^0.6.2 + Johboh/EspNowNetworkNode@^0.6.1 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkNode: - version: ">=0.6.2" + version: ">=0.6.1" ``` - **EspNowNetworkHost**: This is the host only code. It contains the basics for receiving messages from the node. But for a real life environment, you want to handle different kind of nodes and application messages, as well as firmware/OTA support for the nodes. For that, you can instead use the **EspNowNetworkHostDriver** (see below). - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkHost@^0.6.2 + Johboh/EspNowNetworkHost@^0.6.1 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkHost: - version: ">=0.6.2" + version: ">=0.6.1" ``` - **EspNowNetworkHostDriver**: Same as EspNowNetworkHost, but with support for "virtual" nodes and firmware/OTA updates. See the [Arduino](examples/arduino/host_driver/HostDriver.ino) or [ESP-IDF](examples/espidf/host_driver/main/main.cpp) example. - PlatformIO: Add the following to `libs_deps`: ``` - Johboh/EspNowNetworkHostDriver@^0.6.2 + Johboh/EspNowNetworkHostDriver@^0.6.1 ``` - Add to `idf_component.yml` next to your main component: ``` dependencies: johboh/EspNowNetworkHostDriver: - version: ">=0.6.2" + version: ">=0.6.1" ``` - **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. diff --git a/idf_component.yml b/idf_component.yml index 54c6560..b9c9588 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.6.2" +version: "0.6.1" 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 18103c0..c0ec89c 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ { "name": "Johan Böhlin" }, - "version": "0.6.2", + "version": "0.6.1", "license": "MIT", "repository": { diff --git a/library.properties b/library.properties index a3e6fa8..8983501 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=EspNowNetwork -version=0.6.2 +version=0.6.1 author=Johan Böhlin maintainer=Johan Böhlin sentence=Library for setting up a network of ESP NOW nodes