Skip to content

Commit

Permalink
Arduino IDE library fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Johboh committed Aug 9, 2024
1 parent 80534b1 commit 74d7579
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Arduino (using Arduino IDE or PlatformIO) and ESP-IDF (using Espressif IoT Devel
#### PlatformIO (Arduino or ESP-IDF):
Add the following to `libs_deps` for __ESP32__:
```
Johboh/ConnectionHelper@^3.0.0
Johboh/ConnectionHelper@^3.0.1
```
For __ESP8266__, use the legacy 2.x version:
```
Expand All @@ -30,7 +30,7 @@ In your existing `idf_component.yml` or in a new `idf_component.yml` next to you
```
dependencies:
johboh/ConnectionHelper:
version: ">=3.0.0"
version: ">=3.0.1"
```

### Example
Expand Down
2 changes: 1 addition & 1 deletion examples/espidf/simple/main/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies:
johboh/ConnectionHelper:
#version: ">=3.0.0"
#version: ">=3.0.1"
# Remove path and enable version to use ConnectionHelper from repository
path: ../../../../
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.0.0"
version: "3.0.1"
description: Library for setting up WiFi and OTA (Over The Air)
url: https://github.com/Johboh/ConnectionHelper
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"name": "Johan Böhlin"
},
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",
"repository":
{
Expand Down
5 changes: 3 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name=ConnectionHelper
version=3.0.0
version=3.0.1
author=Johan Böhlin <[email protected]>
maintainer=Johan Böhlin <[email protected]>
sentence=Library for setting up WiFi and OTA (Over The Air)
paragraph=Library for setting up WiFi and OTA (Over The Air)
paragraph=Reduce boilerplate in WiFi and OTA setup.
category=Communication
url=https://github.com/Johboh/ConnectionHelper
architectures=esp32
repository=https://github.com/Johboh/ConnectionHelper.git
license=MIT
dependends=
includes=OtaHelper.h,WifiHelper.h

0 comments on commit 74d7579

Please sign in to comment.