Skip to content

Commit b6e2ac2

Browse files
bump(console): 1.0.1 -> 1.0.2
1.0.2 Bug Fixes - Fixed bump version check in publish-docs yml (e834d47)
1 parent e834d47 commit b6e2ac2

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
sudo apt-get -y install doxygen clang python3-pip
5151
python -m pip install breathe recommonmark esp-docs==1.4.1
5252
for comp in `ls components`; do
53-
if [ -d $GITHUB_WORKSPACE/docs/${comp} ]; then
53+
if [[ -d $GITHUB_WORKSPACE/docs/${comp} ]]; then
5454
cd $GITHUB_WORKSPACE/docs/${comp}
5555
if [[ "${{ env.BUMP_COMPONENT }}" == "${comp}" ]]; then
5656
echo "Building specific version of ${comp} (${{ env.BUMP_VERSION }})"
@@ -69,7 +69,7 @@ jobs:
6969
export GIT_VER=$(git describe --always)
7070
export GITHUB_REF_NAME=latest
7171
for comp in `ls components`; do
72-
if [ -d $GITHUB_WORKSPACE/docs/${comp} ]; then
72+
if [[ -d $GITHUB_WORKSPACE/docs/${comp} ]]; then
7373
echo "Deploying latest of ${comp}"
7474
export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/${comp}
7575
export DOCS_DEPLOY_PATH=$DOCS_DEPLOY_PATH_ORIG/${comp}
@@ -79,7 +79,7 @@ jobs:
7979
done;
8080
# Deploy docs with version path
8181
if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} ]]; then
82-
echo "Deploying specific version of $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
82+
echo "Deploying specific version of ${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
8383
cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }}
8484
export GITHUB_REF_NAME=${{ env.BUMP_VERSION }}
8585
deploy-docs

components/console_simple_init/.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_simple_init
55
tag_format: console_simple_init-v$version
6-
version: 1.0.1
6+
version: 1.0.2
77
version_files:
88
- idf_component.yml

components/console_simple_init/CHANGELOG.md

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

3+
## [1.0.2](https://github.com/espressif/esp-protocols/commits/console_simple_init-v1.0.2)
4+
5+
### Bug Fixes
6+
7+
- Fixed bump version check in publish-docs yml ([e834d47](https://github.com/espressif/esp-protocols/commit/e834d47))
8+
39
## [1.0.1](https://github.com/espressif/esp-protocols/commits/console_simple_init-v1.0.1)
410

511
### Bug Fixes

components/console_simple_init/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.0.1
1+
version: 1.0.2
22
description: The component provides helper functions for easy initialization and start of esp console.
33
url: https://github.com/espressif/esp-protocols/tree/master/components/console_simple_init
44
dependencies:

0 commit comments

Comments
 (0)