Skip to content

Commit c0cf91e

Browse files
authored
Merge pull request #968 from david-cermak/bump/eppp_v1.1.4
[eppp]: Bump -> v1.1.4
2 parents 25735ea + 2535b3f commit c0cf91e

File tree

6 files changed

+14
-3
lines changed

6 files changed

+14
-3
lines changed

.github/workflows/eppp__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build
1414
strategy:
1515
matrix:
16-
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3"]
16+
idf_ver: ["latest", "release-v6.0", "release-v5.5", "release-v5.4", "release-v5.3"]
1717
test: [ { app: host, path: "examples/host" }, { app: slave, path: "examples/slave" }, { app: test_app, path: "test/test_app" }]
1818
runs-on: ubuntu-22.04
1919
container: espressif/idf:${{ matrix.idf_ver }}

components/eppp_link/.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(eppp): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py eppp_link
55
tag_format: eppp-v$version
6-
version: 1.1.3
6+
version: 1.1.4
77
version_files:
88
- idf_component.yml

components/eppp_link/CHANGELOG.md

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

3+
## [1.1.4](https://github.com/espressif/esp-protocols/commits/eppp-v1.1.4)
4+
5+
### Bug Fixes
6+
7+
- Fixed missing freertos deps ([f1e35977](https://github.com/espressif/esp-protocols/commit/f1e35977))
8+
- Add optional mqtt dependency ([911c2dbe](https://github.com/espressif/esp-protocols/commit/911c2dbe))
9+
310
## [1.1.3](https://github.com/espressif/esp-protocols/commits/eppp-v1.1.3)
411

512
### Bug Fixes

components/eppp_link/eppp_sdio_host.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include "sdkconfig.h"
99
#include "esp_log.h"
1010
#include "esp_netif.h"
11+
#include "freertos/FreeRTOS.h"
12+
#include "freertos/task.h"
1113
#include "driver/sdio_slave.h"
1214
#include "esp_serial_slave_link/essl_sdio.h"
1315
#include "eppp_sdio.h"

components/eppp_link/eppp_sdio_slave.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include "sdkconfig.h"
99
#include "esp_log.h"
1010
#include "esp_netif.h"
11+
#include "freertos/FreeRTOS.h"
12+
#include "freertos/task.h"
1113
#include "driver/sdio_slave.h"
1214
#include "eppp_link.h"
1315
#include "eppp_transport.h"

components/eppp_link/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.1.3
1+
version: 1.1.4
22
url: https://github.com/espressif/esp-protocols/tree/master/components/eppp_link
33
description: The component provides a general purpose PPP connectivity, typically used as WiFi-PPP router
44
dependencies:

0 commit comments

Comments
 (0)