Skip to content

Commit b1b2bc2

Browse files
bump(console): First version [1.0.0]
1.0.0 Features - Console for runtime network interface configuration and monitoring (8bab142)
1 parent 8bab142 commit b1b2bc2

File tree

4 files changed

+47
-40
lines changed

4 files changed

+47
-40
lines changed

.github/workflows/publish-docs-component.yml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Publish Tag, Release, Docs, Component
1818
runs-on: ubuntu-latest
1919
# Skip running on forks since it won't have access to secrets
20-
if: github.repository == 'espressif/esp-protocols'
20+
if: github.repository == 'espressif-abhikroy/esp-protocols'
2121
steps:
2222
- name: Checkout esp-protocols
2323
uses: actions/checkout@v3
@@ -61,40 +61,40 @@ jobs:
6161
fi
6262
fi
6363
done
64-
- name: Deploying generated docs
65-
shell: bash
66-
run: |
67-
source $GITHUB_WORKSPACE/docs/utils.sh
68-
add_doc_server_ssh_keys $DOCS_DEPLOY_KEY $DOCS_DEPLOY_SERVER $DOCS_DEPLOY_SERVER_USER
69-
export GIT_VER=$(git describe --always)
70-
export GITHUB_REF_NAME=latest
71-
for comp in `ls components`; do
72-
if [[ -d $GITHUB_WORKSPACE/docs/${comp} ]]; then
73-
echo "Deploying latest of ${comp}"
74-
export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/${comp}
75-
export DOCS_DEPLOY_PATH=$DOCS_DEPLOY_PATH_ORIG/${comp}
76-
cd $GITHUB_WORKSPACE/docs/${comp}
77-
deploy-docs
78-
fi
79-
done;
80-
# Deploy docs with version path
81-
if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} ]]; then
82-
echo "Deploying specific version of ${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
83-
cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }}
84-
export GITHUB_REF_NAME=${{ env.BUMP_VERSION }}
85-
deploy-docs
86-
fi
87-
- name: Upload components to component service
88-
uses: espressif/upload-components-ci-action@v1
89-
with:
90-
directories: >
91-
components/asio;
92-
components/esp_modem;
93-
components/esp_mqtt_cxx;
94-
components/esp_websocket_client;
95-
components/mdns;
96-
components/console_simple_init;
97-
components/console_cmd_ping;
98-
components/console_cmd_ifconfig;
99-
namespace: "espressif"
100-
api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}
64+
# - name: Deploying generated docs
65+
# shell: bash
66+
# run: |
67+
# source $GITHUB_WORKSPACE/docs/utils.sh
68+
# add_doc_server_ssh_keys $DOCS_DEPLOY_KEY $DOCS_DEPLOY_SERVER $DOCS_DEPLOY_SERVER_USER
69+
# export GIT_VER=$(git describe --always)
70+
# export GITHUB_REF_NAME=latest
71+
# for comp in `ls components`; do
72+
# if [[ -d $GITHUB_WORKSPACE/docs/${comp} ]]; then
73+
# echo "Deploying latest of ${comp}"
74+
# export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/${comp}
75+
# export DOCS_DEPLOY_PATH=$DOCS_DEPLOY_PATH_ORIG/${comp}
76+
# cd $GITHUB_WORKSPACE/docs/${comp}
77+
# deploy-docs
78+
# fi
79+
# done;
80+
# # Deploy docs with version path
81+
# if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} ]]; then
82+
# echo "Deploying specific version of ${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
83+
# cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }}
84+
# export GITHUB_REF_NAME=${{ env.BUMP_VERSION }}
85+
# deploy-docs
86+
# fi
87+
# - name: Upload components to component service
88+
# uses: espressif/upload-components-ci-action@v1
89+
# with:
90+
# directories: >
91+
# components/asio;
92+
# components/esp_modem;
93+
# components/esp_mqtt_cxx;
94+
# components/esp_websocket_client;
95+
# components/mdns;
96+
# components/console_simple_init;
97+
# components/console_cmd_ping;
98+
# components/console_cmd_ifconfig;
99+
# namespace: "espressif"
100+
# api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }}

components/console_cmd_ifconfig/.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(console): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py console_cmd_ifconfig
55
tag_format: console_cmd_ifconfig-v$version
6-
version: 0.0.9
6+
version: 1.0.0
77
version_files:
88
- idf_component.yml
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## [1.0.0](https://github.com/espressif/esp-protocols/commits/console_cmd_ifconfig-v1.0.0)
4+
5+
### Features
6+
7+
- Console for runtime network interface configuration and monitoring ([8bab1420](https://github.com/espressif/esp-protocols/commit/8bab1420))

components/console_cmd_ifconfig/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.0.9
1+
version: 1.0.0
22
url: https://github.com/espressif/esp-protocols/tree/master/components/console_cmd_ifconfig
33
description: The component offers a console that enables runtime network interface configuration and monitoring.
44
dependencies:

0 commit comments

Comments
 (0)