Skip to content

Commit 8261ea4

Browse files
committed
fix(expander): fix dependency issue of mcp23017
close #567
1 parent 3679276 commit 8261ea4

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

components/expander/io_expander/mcp23017/CHANGELOG.md

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

3+
## v0.1.1 - 2025-8-25
4+
5+
### Bug Fixes:
6+
7+
* Fix the dependency issue of the `i2c_bus` component.
8+
39
## v0.1.0 - 2025-1-6
410

511
### Enhancements:

components/expander/io_expander/mcp23017/idf_component.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
version: "0.1.0"
1+
version: "0.1.1"
22
description: MCP23017 I/O Expander Driver
33
url: https://github.com/espressif/esp-iot-solution/tree/master/components/expander/io_expander/mcp23017
44
repository: https://github.com/espressif/esp-iot-solution.git
55
documentation: https://docs.espressif.com/projects/esp-iot-solution/en/latest/others/io_expander.html
66
issues: https://github.com/espressif/esp-iot-solution/issues
77

88
dependencies:
9-
espressif/i2c_bus: "1.1.*"
9+
i2c_bus:
10+
public: true
11+
override_path: "../../../i2c_bus"
1012
idf: ">=4.0"
1113
cmake_utilities: "0.*"
1214
sbom:

0 commit comments

Comments
 (0)