Skip to content

Commit 6c993ff

Browse files
authored
Bump versions in readme
1 parent e97cbda commit 6c993ff

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ There are a set if different variants of this library you can use.
2626
- **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.
2727
- PlatformIO: Add the following to `libs_deps`:
2828
```
29-
Johboh/EspNowNetworkNode@^0.7.1
29+
Johboh/EspNowNetworkNode@^0.7.5
3030
```
3131
- ESP-IDF: Add to `idf_component.yml` next to your main component:
3232
```
3333
dependencies:
3434
johboh/espnownetworknode:
35-
version: ">=0.7.1"
35+
version: ">=0.7.5"
3636
```
3737
- Arduino IDE: Search for `EspNowNetworkNode` by `johboh` in the library manager.
3838
@@ -59,13 +59,13 @@ There are a set if different variants of this library you can use.
5959
- **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](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/FirmwareChecker.h) which checks for new firmwares on a HTTP server. It is also possible to implement a custom [Firmware Checker](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/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](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/FirmwareChecker.h) located [here](firmware%20http%20server).
6060
- PlatformIO: Add the following to `libs_deps`:
6161
```
62-
Johboh/EspNowNetworkHostDriver@^0.7.1
62+
Johboh/EspNowNetworkHostDriver@^0.7.2
6363
```
6464
- ESP-IDF: Add to `idf_component.yml` next to your main component:
6565
```
6666
dependencies:
6767
johboh/espnownetworkhostdriver:
68-
version: ">=0.7.1"
68+
version: ">=0.7.2"
6969
```
7070
- Arduino IDE: Search for `EspNowNetworkHostDriver` by `johboh` in the library manager.
7171
@@ -95,13 +95,13 @@ There are a set if different variants of this library you can use.
9595
- **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.
9696
- PlatformIO: Add the following to `libs_deps`:
9797
```
98-
Johboh/EspNowNetworkHost@^0.7.1
98+
Johboh/EspNowNetworkHost@^0.7.3
9999
```
100100
- ESP-IDF: Add to `idf_component.yml` next to your main component:
101101
```
102102
dependencies:
103103
johboh/espnownetworkhost:
104-
version: ">=0.7.1"
104+
version: ">=0.7.3"
105105
```
106106
- Arduino IDE: Search for `EspNowNetworkHost` by `johboh` in the library manager.
107107

0 commit comments

Comments
 (0)