Skip to content

Commit 5269e1e

Browse files
authored
Merge pull request #57 from david-cermak/update/v0.15
[v0.15]: Support for v5.4.2 release tag
2 parents 301afb4 + 830c353 commit 5269e1e

28 files changed

+10769
-4
lines changed

.github/workflows/smoke_compat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Check API compatibility of WiFi Remote
1515
strategy:
1616
matrix:
17-
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4", "v5.4.1", "v5.3.3", "v5.3.2", "v5.3.1"]
17+
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4", "v5.4.1", "v5.4.2", "v5.3.3", "v5.3.2", "v5.3.1"]
1818
runs-on: ubuntu-latest
1919
container: espressif/idf:${{ matrix.idf_ver }}
2020
steps:
@@ -33,7 +33,7 @@ jobs:
3333
name: Build IDF examples with WiFi Remote
3434
strategy:
3535
matrix:
36-
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4.1", "v5.3.3", "v5.3.1", "v5.3.2", "v5.4"]
36+
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4.1", "v5.3.3", "v5.3.1", "v5.3.2", "v5.4", "v5.4.2"]
3737
idf_target: ["esp32p4", "esp32h2", "esp32s3"]
3838
test: [ { app: idf_mqtt_example, path: "examples/protocols/mqtt/tcp" }, { app: wifi_enterprise, path: "examples/wifi/wifi_enterprise" }]
3939
runs-on: ubuntu-latest

components/esp_wifi_remote/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(wifi_remote): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py esp_wifi_remote
55
tag_format: wifi_remote-v$version
6-
version: 0.14.5
6+
version: 0.15.0
77
version_files:
88
- idf_component.yml

components/esp_wifi_remote/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.15.0](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.15.0)
4+
5+
### Bug Fixes
6+
7+
- Add support for v5.4.2 IDF release tag ([4809209](https://github.com/espressif/esp-wifi-remote/commit/4809209))
8+
39
## [0.14.5](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.14.5)
410

511
### Bug Fixes

components/esp_wifi_remote/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.14.5
1+
version: 0.15.0
22
url: https://github.com/espressif/esp-wifi-remote
33
description: Utility wrapper for esp_wifi functionality on remote targets
44
dependencies:
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This file is auto-generated
2+
choice SLAVE_IDF_TARGET
3+
prompt "choose slave target"
4+
default SLAVE_IDF_TARGET_ESP32C6 if IDF_TARGET_ESP32P4 # To support common use-cases
5+
default SLAVE_IDF_TARGET_ESP32
6+
7+
config SLAVE_IDF_TARGET_ESP32
8+
bool "esp32"
9+
config SLAVE_IDF_TARGET_ESP32S2
10+
bool "esp32s2"
11+
config SLAVE_IDF_TARGET_ESP32C3
12+
bool "esp32c3"
13+
config SLAVE_IDF_TARGET_ESP32S3
14+
bool "esp32s3"
15+
config SLAVE_IDF_TARGET_ESP32C2
16+
bool "esp32c2"
17+
config SLAVE_IDF_TARGET_ESP32C6
18+
bool "esp32c6"
19+
config SLAVE_IDF_TARGET_ESP32C5
20+
bool "esp32c5"
21+
config SLAVE_IDF_TARGET_ESP32C61
22+
bool "esp32c61"
23+
endchoice

0 commit comments

Comments
 (0)