Skip to content

Commit f67d061

Browse files
authored
feat(ch422g): support enter/exit sleep (#20)
* fix(port): fix discarded qualifiers warning @isthaison (#22) Closes #22 * feat(ch422g): support enter/exit sleep
2 parents e79a638 + 8cb62db commit f67d061

18 files changed

+110
-90
lines changed

.github/workflows/arduino_lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
workflow_dispatch:
55
pull_request:
66
types: [opened, reopened, synchronize]
7+
push:
8+
branches:
9+
- master
710

811
jobs:
912
lint:

.github/workflows/build_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
workflow_dispatch:
55
pull_request:
66
types: [opened, reopened, synchronize]
7+
push:
8+
branches:
9+
- master
710

811
jobs:
912
build:

.github/workflows/issue_comment.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/new_issues.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/new_prs.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-python@v2
14-
- uses: pre-commit/action@v2.0.3
14+
- uses: pre-commit/action@v3.0.1

.github/workflows/upload_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- name: Upload components to component service
1616
uses: espressif/upload-components-ci-action@v1
1717
with:
18-
name: "ESP32_IO_Expander"
18+
name: "esp32_io_expander"
1919
namespace: "espressif"
2020
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}

CHANGELOG.md

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

3+
## v1.1.1 - 2025-07-07
4+
5+
### Enhancements:
6+
7+
* feat(ch422g): support enter/exit sleep
8+
9+
### Bug Fixes:
10+
11+
* fix(port): fix discarded qualifiers warning
12+
313
## v1.1.0 - 2025-02-07
414

515
### Enhancements:

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.0"
1+
version: "1.1.1"
22
description: ESP32_IO_Expander is a library designed for driving IO expander chips using ESP SoCs
33
url: https://github.com/esp-arduino-libs/ESP32_IO_Expander
44
repository: https://github.com/esp-arduino-libs/ESP32_IO_Expander.git

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_IO_Expander
2-
version=1.1.0
2+
version=1.1.1
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_IO_Expander is a library designed for driving IO expander chips using ESP SoCs

0 commit comments

Comments
 (0)