From 2e9bb6ee45d65a061ae99ba956faad09ff33d91f Mon Sep 17 00:00:00 2001 From: Abhik Roy Date: Fri, 29 Nov 2024 01:03:08 +1100 Subject: [PATCH] bump(console): First version [1.0.0] 1.0.0 Features - Added component with mqtt command (1fcc5b1d) --- components/console_cmd_mqtt/.cz.yaml | 2 +- components/console_cmd_mqtt/CHANGELOG.md | 7 +++++++ .../examples/mqtt_ssl_auth_console/sdkconfig.defaults | 1 + components/console_cmd_mqtt/idf_component.yml | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 components/console_cmd_mqtt/CHANGELOG.md diff --git a/components/console_cmd_mqtt/.cz.yaml b/components/console_cmd_mqtt/.cz.yaml index f234310917..9d23eecba0 100644 --- a/components/console_cmd_mqtt/.cz.yaml +++ b/components/console_cmd_mqtt/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(console): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py console_cmd_mqtt tag_format: console_cmd_mqtt-v$version - version: 0.1.0 + version: 1.0.0 version_files: - idf_component.yml diff --git a/components/console_cmd_mqtt/CHANGELOG.md b/components/console_cmd_mqtt/CHANGELOG.md new file mode 100644 index 0000000000..ad498addd3 --- /dev/null +++ b/components/console_cmd_mqtt/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +## [1.0.0](https://github.com/espressif/esp-protocols/commits/console_cmd_mqtt-v1.0.0) + +### Features + +- Added component with mqtt command ([1fcc5b1d](https://github.com/espressif/esp-protocols/commit/1fcc5b1d)) diff --git a/components/console_cmd_mqtt/examples/mqtt_ssl_auth_console/sdkconfig.defaults b/components/console_cmd_mqtt/examples/mqtt_ssl_auth_console/sdkconfig.defaults index bde68f9fe7..f9fa2835bf 100644 --- a/components/console_cmd_mqtt/examples/mqtt_ssl_auth_console/sdkconfig.defaults +++ b/components/console_cmd_mqtt/examples/mqtt_ssl_auth_console/sdkconfig.defaults @@ -1,6 +1,7 @@ # This file was generated using idf.py save-defconfig. It can be edited manually. # Espressif IoT Development Framework (ESP-IDF) 5.5.0 Project Minimal Configuration # +CONFIG_COMPILER_OPTIMIZATION_SIZE=y CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN=y CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE=y CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH="certs/mosquitto.org.pem" diff --git a/components/console_cmd_mqtt/idf_component.yml b/components/console_cmd_mqtt/idf_component.yml index 0a25b6eac7..10e42226ef 100644 --- a/components/console_cmd_mqtt/idf_component.yml +++ b/components/console_cmd_mqtt/idf_component.yml @@ -1,4 +1,4 @@ -version: 0.1.0 +version: 1.0.0 url: https://github.com/espressif/esp-protocols/tree/master/components/console_cmd_mqtt description: The component provides a console where the 'mqtt' command can be executed. license: Apache-2.0