Skip to content

Commit

Permalink
Merge pull request #198 from sorru94/update-component-version
Browse files Browse the repository at this point in the history
Update component version
  • Loading branch information
harlem88 authored Jan 18, 2024
2 parents e2f3894 + d331afd commit 3e036d9
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/aggregates/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/datastreams/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/encryption/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/non_volatile_storage/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/properties/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/registration/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/toggle_led/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
4 changes: 2 additions & 2 deletions idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
# SPDX-License-Identifier: LGPL-2.1-or-later OR Apache-2.0
#

version: "1.2.0"
version: "1.3.0"
description: "A component that provides communication and pairing primitives to an Astarte cluster"
url: "https://github.com/astarte-platform/astarte-device-sdk-esp32"
documentation: "https://docs.astarte-platform.org/device-sdks/esp32/1.2/api"
documentation: "https://docs.astarte-platform.org/device-sdks/esp32/1.3/api"

tags:
- sdk
Expand Down

0 comments on commit 3e036d9

Please sign in to comment.