File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 44 - target_test
55 - build_docs
66 - deploy
7+ - post_deploy
78
89workflow :
910 rules :
Original file line number Diff line number Diff line change @@ -89,14 +89,13 @@ deploy_docs_production:
8989 DOCS_DEPLOY_URL_BASE : " $DOCS_PROD_URL_BASE"
9090
9191post_links :
92- stage : deploy
92+ stage : post_deploy
93+ extends :
94+ - .rules:deploy:docs_preview
9395 tags : [deploy_docs]
9496 image : $ESP_DOCS_ENV_IMAGE
9597 needs :
9698 - deploy_docs_preview
97- rules :
98- # Run for all changes to a merge request's source branch
99- - if : $CI_PIPELINE_SOURCE == 'merge_request_event'
10099 script :
101100 - ls -al logs
102101 - python3 ${CI_PROJECT_DIR}/tools/ci/post-mr-note.py $GITLAB_MR_NOTE_TOKEN $CI_PROJECT_PATH $CI_MERGE_REQUEST_IID
Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v4.1.1 - 2025-03-13
4+
5+ ### Improve:
6+
7+ * include stdbool.h before using bool
8+
39## v4.1.0 - 2025-02-28
410
511### Improve:
612
7- - Update the version of dependent cmake_utilities to *
13+ * Update the version of dependent cmake_utilities to *
814
915## v4.0.0 - 2025-1-9
1016
Original file line number Diff line number Diff line change 1- version : " 4.1.0 "
1+ version : " 4.1.1 "
22description : GPIO and ADC and Matrix button driver
33url : https://github.com/espressif/esp-iot-solution/tree/master/components/button
44repository : https://github.com/espressif/esp-iot-solution.git
Original file line number Diff line number Diff line change 55 */
66#pragma once
77
8+ #include <stdbool.h>
89#include <stdint.h>
910#include "esp_err.h"
1011
You can’t perform that action at this time.
0 commit comments