diff --git a/.github/workflows/tag-and-zip.yml b/.github/workflows/release-automation.yml similarity index 81% rename from .github/workflows/tag-and-zip.yml rename to .github/workflows/release-automation.yml index 393122ddea..7cb123913f 100644 --- a/.github/workflows/tag-and-zip.yml +++ b/.github/workflows/release-automation.yml @@ -1,4 +1,4 @@ -name: Tag, Deploy Docs, and Create ZIP +name: Release Automation on: workflow_dispatch: @@ -58,7 +58,7 @@ jobs: env: VERSION_NUMBER: ${{ github.event.inputs.version_number }} run: | - zip -r aws-iot-device-sdk-embedded-C-$"VERSION_NUMBER".zip aws-iot-device-sdk-embedded-C -x "*.git*" + zip -r aws-iot-device-sdk-embedded-C-"$VERSION_NUMBER".zip aws-iot-device-sdk-embedded-C -x "*.git*" ls ./ - name: Validate created ZIP env: @@ -158,3 +158,35 @@ jobs: exit 1 fi output_dir: html + create-release: + needs: + - create-zip + - deploy-docs + name: Create Release and Upload Release Asset + runs-on: ubuntu-20.04 + steps: + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.event.inputs.version_number }} + release_name: ${{ github.event.inputs.version_number }} + body: Release version ${{ github.event.inputs.version_number }} of the AWS IoT Device SDK for Embedded C. + draft: false + prerelease: false + - name: Download ZIP artifact + uses: actions/download-artifact@v4 + with: + name: aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip + asset_name: aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip + asset_content_type: application/zip diff --git a/.github/workflows/upload-release.yml b/.github/workflows/upload-release.yml deleted file mode 100644 index 36dd2ef2e6..0000000000 --- a/.github/workflows/upload-release.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Create Release for Existing Tag - -on: - workflow_dispatch: - inputs: - workflow_name: - description: 'Name of workflow (file name) to obtain ZIP from' - default: tag-and-zip - required: false - workflow_id: - description: 'Workflow Run ID to obtain ZIP from' - required: true - version_number: - description: 'Tag Version Number (Eg, 202012.00) to release' - required: true - -jobs: - create-release: - name: Create Release and Upload Release Asset - runs-on: ubuntu-20.04 - steps: - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.event.inputs.version_number }} - release_name: ${{ github.event.inputs.version_number }} - body: Release version ${{ github.event.inputs.version_number }} of the AWS IoT Device SDK for Embedded C. - draft: false - prerelease: false - - name: Download ZIP artifact - uses: dawidd6/action-download-artifact@v6 - with: - github_token: ${{secrets.GITHUB_TOKEN}} - # Required, workflow file name or ID - workflow: ${{ github.event.inputs.workflow_name }}.yml - run_id: ${{ github.event.inputs.workflow_id }} - name: aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip - asset_name: aws-iot-device-sdk-embedded-C-${{ github.event.inputs.version_number }}.zip - asset_content_type: application/zip diff --git a/CMakeLists.txt b/CMakeLists.txt index 408e4552f0..1bead5eaa2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Project information. cmake_minimum_required( VERSION 3.2.0 ) project( AwsIotDeviceSdkEmbeddedC - VERSION 202211.00 + VERSION 202412.00 LANGUAGES C CXX ) # Allow the project to be organized into folders. diff --git a/README.md b/README.md index 78fdc24391..171f5e6a95 100755 --- a/README.md +++ b/README.md @@ -81,19 +81,19 @@ C-SDK simplifies access to various AWS IoT services. C-SDK has been tested to wo The [coreMQTT](https://github.com/FreeRTOS/coreMQTT) library provides the ability to establish an MQTT connection with a broker over a customer-implemented transport layer, which can either be a secure channel like a TLS session (mutually authenticated or server-only authentication) or a non-secure channel like a plaintext TCP connection. This MQTT connection can be used for performing publish operations to MQTT topics and subscribing to MQTT topics. The library provides a mechanism to register customer-defined callbacks for receiving incoming PUBLISH, acknowledgement and keep-alive response events from the broker. The library has been refactored for memory optimization and is compliant with the [MQTT 3.1.1](https://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html) standard. It has no dependencies on any additional libraries other than the standard C library, a customer-implemented network transport interface, and optionally a customer-implemented platform time function. The refactored design embraces different use-cases, ranging from resource-constrained platforms using only QoS 0 MQTT PUBLISH messages to resource-rich platforms using QoS 2 MQTT PUBLISH over TLS connections. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/coreMQTT/docs/doxygen/output/html/index.html#mqtt_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/coreMQTT/docs/doxygen/output/html/index.html#mqtt_memory_requirements). #### coreHTTP The [coreHTTP](https://github.com/FreeRTOS/coreHTTP) library provides the ability to establish an HTTP connection with a server over a customer-implemented transport layer, which can either be a secure channel like a TLS session (mutually authenticated or server-only authentication) or a non-secure channel like a plaintext TCP connection. The HTTP connection can be used to make "GET" (include range requests), "PUT", "POST" and "HEAD" requests. The library provides a mechanism to register a customer-defined callback for receiving parsed header fields in an HTTP response. The library has been refactored for memory optimization, and is a client implementation of a subset of the [HTTP/1.1](https://tools.ietf.org/html/rfc2616) standard. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/coreHTTP/docs/doxygen/output/html/index.html#http_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/coreHTTP/docs/doxygen/output/html/index.html#http_memory_requirements). #### coreJSON The [coreJSON](https://github.com/FreeRTOS/coreJSON) library is a JSON parser that strictly enforces the [ECMA-404 JSON standard](https://www.json.org/json-en.html). It provides a function to validate a JSON document, and a function to search for a key and return its value. A search can descend into nested structures using a compound query key. A JSON document validation also checks for illegal UTF8 encodings and illegal Unicode escape sequences. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/coreJSON/docs/doxygen/output/html/index.html#json_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/coreJSON/docs/doxygen/output/html/index.html#json_memory_requirements). #### corePKCS11 @@ -109,7 +109,7 @@ The purpose of corePKCS11 mock is therefore to provide a PKCS #11 implementation Since the PKCS #11 interface is defined as part of the PKCS #11 [specification](https://docs.oasis-open.org/pkcs11/pkcs11-base/v2.40/os/pkcs11-base-v2.40-os.html) replacing corePKCS11 with another implementation should require little porting effort, as the interface will not change. The system tests distributed in corePKCS11 repository can be leveraged to verify the behavior of a different implementation is similar to corePKCS11. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/corePKCS11/docs/doxygen/output/html/pkcs11_design.html#pkcs11_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/corePKCS11/docs/doxygen/output/html/pkcs11_design.html#pkcs11_memory_requirements). #### AWS IoT Device Shadow @@ -117,7 +117,7 @@ The [AWS IoT Device Shadow](https://github.com/aws/device-shadow-for-aws-iot-emb The AWS IoT Device Shadow library has no dependencies on additional libraries other than the standard C library. It also doesn’t have any platform dependencies, such as threading or synchronization. It can be used with any MQTT library and any JSON library (see [demos](demos/shadow) with coreMQTT and coreJSON). -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/device-shadow-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#shadow_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/device-shadow-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#shadow_memory_requirements). #### AWS IoT Jobs @@ -126,7 +126,7 @@ The [AWS IoT Jobs](https://github.com/aws/jobs-for-aws-iot-embedded-sdk) library The AWS IoT Jobs library has no dependencies on additional libraries other than the standard C library. It also doesn’t have any platform dependencies, such as threading or synchronization. It can be used with any MQTT library and any JSON library (see [demos](demos/jobs) with [libmosquitto](https://mosquitto.org/) and coreJSON). -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/jobs-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#jobs_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/jobs-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#jobs_memory_requirements). #### AWS IoT Device Defender @@ -135,7 +135,7 @@ The [AWS IoT Device Defender](https://github.com/aws/device-defender-for-aws-iot The AWS IoT Device Defender library has no dependencies on additional libraries other than the standard C library. It also doesn’t have any platform dependencies, such as threading or synchronization. It can be used with any MQTT library and any JSON library (see [demos](demos/defender) with coreMQTT and coreJSON). -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/device-defender-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#defender_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/device-defender-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#defender_memory_requirements). #### AWS IoT Over-the-air Update @@ -145,13 +145,13 @@ Removed since v2022412.00. We recommend transitioning to the [new modular and co The [AWS IoT Fleet Provisioning](https://github.com/aws/fleet-provisioning-for-aws-iot-embedded-sdk) library enables you to interact with the [AWS IoT Fleet Provisioning MQTT APIs](https://docs.aws.amazon.com/iot/latest/developerguide/fleet-provision-api.html) in order to provison IoT devices without preexisting device certificates. With AWS IoT Fleet Provisioning, devices can securely receive unique device certificates from AWS IoT when they connect for the first time. For an overview of all provisioning options offered by AWS IoT, see [device provisioning documentation](https://docs.aws.amazon.com/iot/latest/developerguide/iot-provision.html). For details about Fleet Provisioning, refer to the [AWS IoT Fleet Provisioning documentation](https://docs.aws.amazon.com/iot/latest/developerguide/provision-wo-cert.html). -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/fleet-provisioning-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#fleet_provisioning_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/fleet-provisioning-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#fleet_provisioning_memory_requirements). #### AWS SigV4 The [AWS SigV4](https://github.com/aws/SigV4-for-AWS-IoT-embedded-sdk) library enables you to sign HTTP requests with [Signature Version 4 Signing Process](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). Signature Version 4 (SigV4) is the process to add authentication information to HTTP requests to AWS services. For security, most requests to AWS must be signed with an access key. The access key consists of an access key ID and secret access key. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/sigv4-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#sigv4_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/sigv4-for-aws-iot-embedded-sdk/docs/doxygen/output/html/index.html#sigv4_memory_requirements). #### backoffAlgorithm @@ -161,7 +161,7 @@ Exponential backoff with jitter is typically used when retrying a failed connect The backoffAlgorithm library has no dependencies on libraries other than the standard C library. -See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/backoffAlgorithm/docs/doxygen/output/html/index.html#backoff_algorithm_memory_requirements). +See memory requirements for the latest release [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/backoffAlgorithm/docs/doxygen/output/html/index.html#backoff_algorithm_memory_requirements). ### Sending metrics to AWS IoT @@ -283,19 +283,19 @@ All libraries depend on the ISO C90 standard library and additionally on the `st ### Porting coreMQTT -Guide for porting coreMQTT library to your platform is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/coreMQTT/docs/doxygen/output/html/mqtt_porting.html). +Guide for porting coreMQTT library to your platform is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/coreMQTT/docs/doxygen/output/html/mqtt_porting.html). ### Porting coreHTTP -Guide for porting coreHTTP library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/standard/coreHTTP/docs/doxygen/output/html/http_porting.html). +Guide for porting coreHTTP library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/standard/coreHTTP/docs/doxygen/output/html/http_porting.html). ### Porting AWS IoT Device Shadow -Guide for porting AWS IoT Device Shadow library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/device-shadow-for-aws-iot-embedded-sdk/docs/doxygen/output/html/shadow_porting.html). +Guide for porting AWS IoT Device Shadow library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/device-shadow-for-aws-iot-embedded-sdk/docs/doxygen/output/html/shadow_porting.html). ### Porting AWS IoT Device Defender -Guide for porting AWS IoT Device Defender library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202211.00/libraries/aws/device-defender-for-aws-iot-embedded-sdk/docs/doxygen/output/html/defender_porting.html). +Guide for porting AWS IoT Device Defender library is available [here](https://aws.github.io/aws-iot-device-sdk-embedded-C/202412.00/libraries/aws/device-defender-for-aws-iot-embedded-sdk/docs/doxygen/output/html/defender_porting.html). ## Migration guide from v3.1.5 to 202009.00 and newer releases diff --git a/demos/defender/defender_demo_json/core_mqtt_config.h b/demos/defender/defender_demo_json/core_mqtt_config.h index 13a46d9e20..e1bd6f94d3 100644 --- a/demos/defender/defender_demo_json/core_mqtt_config.h +++ b/demos/defender/defender_demo_json/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/defender_config.h b/demos/defender/defender_demo_json/defender_config.h index 62bd8b5d93..3cb33847c8 100644 --- a/demos/defender/defender_demo_json/defender_config.h +++ b/demos/defender/defender_demo_json/defender_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/defender_demo.c b/demos/defender/defender_demo_json/defender_demo.c index 7021f38215..79be0326f9 100644 --- a/demos/defender/defender_demo_json/defender_demo.c +++ b/demos/defender/defender_demo_json/defender_demo.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/demo_config.h b/demos/defender/defender_demo_json/demo_config.h index 41ccb28af8..9da1d37bc7 100644 --- a/demos/defender/defender_demo_json/demo_config.h +++ b/demos/defender/defender_demo_json/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/metrics_collector.c b/demos/defender/defender_demo_json/metrics_collector.c index 3af9f4305a..78b834bf8a 100644 --- a/demos/defender/defender_demo_json/metrics_collector.c +++ b/demos/defender/defender_demo_json/metrics_collector.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/metrics_collector.h b/demos/defender/defender_demo_json/metrics_collector.h index 4e9b8015c5..c404005553 100644 --- a/demos/defender/defender_demo_json/metrics_collector.h +++ b/demos/defender/defender_demo_json/metrics_collector.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/mqtt_operations.c b/demos/defender/defender_demo_json/mqtt_operations.c index 7d28bcc6a1..41037ec090 100644 --- a/demos/defender/defender_demo_json/mqtt_operations.c +++ b/demos/defender/defender_demo_json/mqtt_operations.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/mqtt_operations.h b/demos/defender/defender_demo_json/mqtt_operations.h index ffda1150b1..a9e5076968 100644 --- a/demos/defender/defender_demo_json/mqtt_operations.h +++ b/demos/defender/defender_demo_json/mqtt_operations.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/report_builder.c b/demos/defender/defender_demo_json/report_builder.c index c22ae8881a..0fcd7c44ac 100644 --- a/demos/defender/defender_demo_json/report_builder.c +++ b/demos/defender/defender_demo_json/report_builder.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/defender/defender_demo_json/report_builder.h b/demos/defender/defender_demo_json/report_builder.h index e91f0c2379..9f3f2d0202 100644 --- a/demos/defender/defender_demo_json/report_builder.h +++ b/demos/defender/defender_demo_json/report_builder.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/core_mqtt_config.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/core_mqtt_config.h index 629e7dc688..484fa523e6 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/core_mqtt_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/demo_config.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/demo_config.h index e095e21592..e99f49c6f5 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/demo_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_config.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_config.h index aa7ef33a3f..a95fbf8a9d 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_keys_cert_demo.c b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_keys_cert_demo.c index 3cb3feac27..5b118b607b 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_keys_cert_demo.c +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_keys_cert_demo.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.c b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.c index b3f1e9fab6..47e937adc1 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.c +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.h index c47dc9cfe0..60df265c8f 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/fleet_provisioning_serializer.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.c b/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.c index f62e79e0c8..fab93000f3 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.c +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.h index d9cdad7528..c317a51e1c 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/mqtt_operations.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.c b/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.c index 5d4ed672fc..7ad2cc203a 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.c +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.h b/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.h index 2745b44c4a..8c608d4be8 100644 --- a/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.h +++ b/demos/fleet_provisioning/fleet_provisioning_keys_cert/pkcs11_operations.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/core_mqtt_config.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/core_mqtt_config.h index 629e7dc688..484fa523e6 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/core_mqtt_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/demo_config.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/demo_config.h index 95005e3bcf..099da53475 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/demo_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_config.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_config.h index aa7ef33a3f..a95fbf8a9d 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_config.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.c b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.c index 9458a25a20..e54e6c52ca 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.c +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.h index e83f7e9f38..9600893913 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_serializer.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_with_csr_demo.c b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_with_csr_demo.c index f950f0abd8..f228a2ed3b 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_with_csr_demo.c +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/fleet_provisioning_with_csr_demo.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.c b/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.c index f62e79e0c8..fab93000f3 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.c +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.h index d9cdad7528..c317a51e1c 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/mqtt_operations.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.c b/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.c index 2b5aa712db..bd4b48a899 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.c +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.h b/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.h index f2675ffcab..ff103347d0 100644 --- a/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.h +++ b/demos/fleet_provisioning/fleet_provisioning_with_csr/pkcs11_operations.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/greengrass/greengrass_demo_local_auth/core_mqtt_config.h b/demos/greengrass/greengrass_demo_local_auth/core_mqtt_config.h index dc258f54e2..bb21904c29 100644 --- a/demos/greengrass/greengrass_demo_local_auth/core_mqtt_config.h +++ b/demos/greengrass/greengrass_demo_local_auth/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/greengrass/greengrass_demo_local_auth/demo_config.h b/demos/greengrass/greengrass_demo_local_auth/demo_config.h index 5f60f280b2..87a470c6c4 100644 --- a/demos/greengrass/greengrass_demo_local_auth/demo_config.h +++ b/demos/greengrass/greengrass_demo_local_auth/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/greengrass/greengrass_demo_local_auth/greengrass_demo_local_auth.c b/demos/greengrass/greengrass_demo_local_auth/greengrass_demo_local_auth.c index 96dd4370c4..9c3376bbed 100644 --- a/demos/greengrass/greengrass_demo_local_auth/greengrass_demo_local_auth.c +++ b/demos/greengrass/greengrass_demo_local_auth/greengrass_demo_local_auth.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/greengrass/greengrass_demo_local_auth/openssl_posix.c b/demos/greengrass/greengrass_demo_local_auth/openssl_posix.c index cd5a8e4e0b..afcd06bf9b 100644 --- a/demos/greengrass/greengrass_demo_local_auth/openssl_posix.c +++ b/demos/greengrass/greengrass_demo_local_auth/openssl_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/demos/greengrass/greengrass_demo_local_auth/openssl_posix.h b/demos/greengrass/greengrass_demo_local_auth/openssl_posix.h index cf8bdb850b..77440c9497 100644 --- a/demos/greengrass/greengrass_demo_local_auth/openssl_posix.h +++ b/demos/greengrass/greengrass_demo_local_auth/openssl_posix.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/include/http_demo_s3_utils.h b/demos/http/common/include/http_demo_s3_utils.h index f6cb5a74a7..2dfc791c46 100644 --- a/demos/http/common/include/http_demo_s3_utils.h +++ b/demos/http/common/include/http_demo_s3_utils.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/include/http_demo_url_utils.h b/demos/http/common/include/http_demo_url_utils.h index 5261bf4c77..497af49b08 100644 --- a/demos/http/common/include/http_demo_url_utils.h +++ b/demos/http/common/include/http_demo_url_utils.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/include/http_demo_utils.h b/demos/http/common/include/http_demo_utils.h index b082b75d95..904c9d3655 100644 --- a/demos/http/common/include/http_demo_utils.h +++ b/demos/http/common/include/http_demo_utils.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/src/http_demo_s3_utils.c b/demos/http/common/src/http_demo_s3_utils.c index 7ab4dba668..35a9041fc2 100644 --- a/demos/http/common/src/http_demo_s3_utils.c +++ b/demos/http/common/src/http_demo_s3_utils.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/src/http_demo_url_utils.c b/demos/http/common/src/http_demo_url_utils.c index 3c30c71dea..ac7c02dc88 100644 --- a/demos/http/common/src/http_demo_url_utils.c +++ b/demos/http/common/src/http_demo_url_utils.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/common/src/http_demo_utils.c b/demos/http/common/src/http_demo_utils.c index 2ec90c45e3..1c911ca019 100644 --- a/demos/http/common/src/http_demo_utils.c +++ b/demos/http/common/src/http_demo_utils.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_basic_tls/core_http_config.h b/demos/http/http_demo_basic_tls/core_http_config.h index bfb587b2f7..b46913f997 100644 --- a/demos/http/http_demo_basic_tls/core_http_config.h +++ b/demos/http/http_demo_basic_tls/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_basic_tls/demo_config.h b/demos/http/http_demo_basic_tls/demo_config.h index 8a45b6dc43..639ab35b57 100644 --- a/demos/http/http_demo_basic_tls/demo_config.h +++ b/demos/http/http_demo_basic_tls/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_basic_tls/http_demo_basic_tls.c b/demos/http/http_demo_basic_tls/http_demo_basic_tls.c index 8882dd5034..3e92240014 100644 --- a/demos/http/http_demo_basic_tls/http_demo_basic_tls.c +++ b/demos/http/http_demo_basic_tls/http_demo_basic_tls.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_mutual_auth/core_http_config.h b/demos/http/http_demo_mutual_auth/core_http_config.h index 4e5a751e94..55ddd730a4 100644 --- a/demos/http/http_demo_mutual_auth/core_http_config.h +++ b/demos/http/http_demo_mutual_auth/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_mutual_auth/demo_config.h b/demos/http/http_demo_mutual_auth/demo_config.h index d731ce6c22..2587d0b5c2 100644 --- a/demos/http/http_demo_mutual_auth/demo_config.h +++ b/demos/http/http_demo_mutual_auth/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_mutual_auth/http_demo_mutual_auth.c b/demos/http/http_demo_mutual_auth/http_demo_mutual_auth.c index 7922912d72..8204923857 100644 --- a/demos/http/http_demo_mutual_auth/http_demo_mutual_auth.c +++ b/demos/http/http_demo_mutual_auth/http_demo_mutual_auth.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_plaintext/core_http_config.h b/demos/http/http_demo_plaintext/core_http_config.h index 0d5de5f658..deaf86a8ef 100644 --- a/demos/http/http_demo_plaintext/core_http_config.h +++ b/demos/http/http_demo_plaintext/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_plaintext/demo_config.h b/demos/http/http_demo_plaintext/demo_config.h index 601089c65a..79e0e05c90 100644 --- a/demos/http/http_demo_plaintext/demo_config.h +++ b/demos/http/http_demo_plaintext/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_plaintext/http_demo_plaintext.c b/demos/http/http_demo_plaintext/http_demo_plaintext.c index 91b3e14e10..8cdd2d7821 100644 --- a/demos/http/http_demo_plaintext/http_demo_plaintext.c +++ b/demos/http/http_demo_plaintext/http_demo_plaintext.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download/core_http_config.h b/demos/http/http_demo_s3_download/core_http_config.h index 8b6c9b959f..8a6cd3bcfc 100644 --- a/demos/http/http_demo_s3_download/core_http_config.h +++ b/demos/http/http_demo_s3_download/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download/demo_config.h b/demos/http/http_demo_s3_download/demo_config.h index a7460effe1..fc6ba7fa02 100644 --- a/demos/http/http_demo_s3_download/demo_config.h +++ b/demos/http/http_demo_s3_download/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download/http_demo_s3_download.c b/demos/http/http_demo_s3_download/http_demo_s3_download.c index baf7e10bdf..0b73c2d8cb 100644 --- a/demos/http/http_demo_s3_download/http_demo_s3_download.c +++ b/demos/http/http_demo_s3_download/http_demo_s3_download.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download_multithreaded/core_http_config.h b/demos/http/http_demo_s3_download_multithreaded/core_http_config.h index 8b6c9b959f..8a6cd3bcfc 100644 --- a/demos/http/http_demo_s3_download_multithreaded/core_http_config.h +++ b/demos/http/http_demo_s3_download_multithreaded/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download_multithreaded/demo_config.h b/demos/http/http_demo_s3_download_multithreaded/demo_config.h index 11950c4af1..d4eaffac4c 100644 --- a/demos/http/http_demo_s3_download_multithreaded/demo_config.h +++ b/demos/http/http_demo_s3_download_multithreaded/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_download_multithreaded/http_demo_s3_download_multithreaded.c b/demos/http/http_demo_s3_download_multithreaded/http_demo_s3_download_multithreaded.c index db7554d5ae..f2c1abe6ea 100644 --- a/demos/http/http_demo_s3_download_multithreaded/http_demo_s3_download_multithreaded.c +++ b/demos/http/http_demo_s3_download_multithreaded/http_demo_s3_download_multithreaded.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_generate_presigned_url/core_http_config.h b/demos/http/http_demo_s3_generate_presigned_url/core_http_config.h index 8b6c9b959f..8a6cd3bcfc 100644 --- a/demos/http/http_demo_s3_generate_presigned_url/core_http_config.h +++ b/demos/http/http_demo_s3_generate_presigned_url/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_generate_presigned_url/demo_config.h b/demos/http/http_demo_s3_generate_presigned_url/demo_config.h index 2772aeb7c2..1a3bf9516a 100644 --- a/demos/http/http_demo_s3_generate_presigned_url/demo_config.h +++ b/demos/http/http_demo_s3_generate_presigned_url/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_generate_presigned_url/http_demo_s3_generate_presigned_url.c b/demos/http/http_demo_s3_generate_presigned_url/http_demo_s3_generate_presigned_url.c index 27ddb7de5c..c903f09bb1 100644 --- a/demos/http/http_demo_s3_generate_presigned_url/http_demo_s3_generate_presigned_url.c +++ b/demos/http/http_demo_s3_generate_presigned_url/http_demo_s3_generate_presigned_url.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_upload/core_http_config.h b/demos/http/http_demo_s3_upload/core_http_config.h index 8b6c9b959f..8a6cd3bcfc 100644 --- a/demos/http/http_demo_s3_upload/core_http_config.h +++ b/demos/http/http_demo_s3_upload/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_upload/demo_config.h b/demos/http/http_demo_s3_upload/demo_config.h index e619be251a..fc0f7fd262 100644 --- a/demos/http/http_demo_s3_upload/demo_config.h +++ b/demos/http/http_demo_s3_upload/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/http/http_demo_s3_upload/http_demo_s3_upload.c b/demos/http/http_demo_s3_upload/http_demo_s3_upload.c index c09419d03c..88f0cbe78a 100644 --- a/demos/http/http_demo_s3_upload/http_demo_s3_upload.c +++ b/demos/http/http_demo_s3_upload/http_demo_s3_upload.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/include/aws_iot_alpn_defs.h b/demos/include/aws_iot_alpn_defs.h index 7d00ce6a20..074b0ed69e 100644 --- a/demos/include/aws_iot_alpn_defs.h +++ b/demos/include/aws_iot_alpn_defs.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/jobs/jobs_demo_mosquitto/demo_config.h b/demos/jobs/jobs_demo_mosquitto/demo_config.h index b6c64ce0a3..cc82640559 100644 --- a/demos/jobs/jobs_demo_mosquitto/demo_config.h +++ b/demos/jobs/jobs_demo_mosquitto/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/jobs/jobs_demo_mosquitto/jobs_demo_mosquitto.c b/demos/jobs/jobs_demo_mosquitto/jobs_demo_mosquitto.c index 8aca14b3e7..0b8cdb1aa5 100644 --- a/demos/jobs/jobs_demo_mosquitto/jobs_demo_mosquitto.c +++ b/demos/jobs/jobs_demo_mosquitto/jobs_demo_mosquitto.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/logging-stack/logging_levels.h b/demos/logging-stack/logging_levels.h index 07e3f5d56b..671bea1ca1 100644 --- a/demos/logging-stack/logging_levels.h +++ b/demos/logging-stack/logging_levels.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/logging-stack/logging_stack.h b/demos/logging-stack/logging_stack.h index 10491fbd82..932d8145b8 100644 --- a/demos/logging-stack/logging_stack.h +++ b/demos/logging-stack/logging_stack.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_basic_tls/core_mqtt_config.h b/demos/mqtt/mqtt_demo_basic_tls/core_mqtt_config.h index 872b469152..2e448b54eb 100644 --- a/demos/mqtt/mqtt_demo_basic_tls/core_mqtt_config.h +++ b/demos/mqtt/mqtt_demo_basic_tls/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_basic_tls/demo_config.h b/demos/mqtt/mqtt_demo_basic_tls/demo_config.h index 263ddb043a..550f8f1851 100644 --- a/demos/mqtt/mqtt_demo_basic_tls/demo_config.h +++ b/demos/mqtt/mqtt_demo_basic_tls/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_basic_tls/mqtt_demo_basic_tls.c b/demos/mqtt/mqtt_demo_basic_tls/mqtt_demo_basic_tls.c index 07790070db..1debebff66 100644 --- a/demos/mqtt/mqtt_demo_basic_tls/mqtt_demo_basic_tls.c +++ b/demos/mqtt/mqtt_demo_basic_tls/mqtt_demo_basic_tls.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_mutual_auth/core_mqtt_config.h b/demos/mqtt/mqtt_demo_mutual_auth/core_mqtt_config.h index 11118382e4..8b621e65ca 100644 --- a/demos/mqtt/mqtt_demo_mutual_auth/core_mqtt_config.h +++ b/demos/mqtt/mqtt_demo_mutual_auth/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_mutual_auth/demo_config.h b/demos/mqtt/mqtt_demo_mutual_auth/demo_config.h index 0089da8d28..7a451890d8 100644 --- a/demos/mqtt/mqtt_demo_mutual_auth/demo_config.h +++ b/demos/mqtt/mqtt_demo_mutual_auth/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_mutual_auth/mqtt_demo_mutual_auth.c b/demos/mqtt/mqtt_demo_mutual_auth/mqtt_demo_mutual_auth.c index 44a157b838..cf34f8c28b 100644 --- a/demos/mqtt/mqtt_demo_mutual_auth/mqtt_demo_mutual_auth.c +++ b/demos/mqtt/mqtt_demo_mutual_auth/mqtt_demo_mutual_auth.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_plaintext/core_mqtt_config.h b/demos/mqtt/mqtt_demo_plaintext/core_mqtt_config.h index 6aacfc26f9..dcf7e23167 100644 --- a/demos/mqtt/mqtt_demo_plaintext/core_mqtt_config.h +++ b/demos/mqtt/mqtt_demo_plaintext/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_plaintext/demo_config.h b/demos/mqtt/mqtt_demo_plaintext/demo_config.h index ecb03740c0..93e6b32acb 100644 --- a/demos/mqtt/mqtt_demo_plaintext/demo_config.h +++ b/demos/mqtt/mqtt_demo_plaintext/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_plaintext/mqtt_demo_plaintext.c b/demos/mqtt/mqtt_demo_plaintext/mqtt_demo_plaintext.c index 13739d10ff..1e78f9d3be 100644 --- a/demos/mqtt/mqtt_demo_plaintext/mqtt_demo_plaintext.c +++ b/demos/mqtt/mqtt_demo_plaintext/mqtt_demo_plaintext.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_serializer/core_mqtt_config.h b/demos/mqtt/mqtt_demo_serializer/core_mqtt_config.h index 419e03111f..2b9eb59b18 100644 --- a/demos/mqtt/mqtt_demo_serializer/core_mqtt_config.h +++ b/demos/mqtt/mqtt_demo_serializer/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_serializer/demo_config.h b/demos/mqtt/mqtt_demo_serializer/demo_config.h index f0fdcbfaec..84b59cc983 100644 --- a/demos/mqtt/mqtt_demo_serializer/demo_config.h +++ b/demos/mqtt/mqtt_demo_serializer/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_serializer/mqtt_demo_serializer.c b/demos/mqtt/mqtt_demo_serializer/mqtt_demo_serializer.c index 4d92c3d5b6..cbfc55e849 100644 --- a/demos/mqtt/mqtt_demo_serializer/mqtt_demo_serializer.c +++ b/demos/mqtt/mqtt_demo_serializer/mqtt_demo_serializer.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_subscription_manager/core_mqtt_config.h b/demos/mqtt/mqtt_demo_subscription_manager/core_mqtt_config.h index 3e84572ab5..f8adf9265b 100644 --- a/demos/mqtt/mqtt_demo_subscription_manager/core_mqtt_config.h +++ b/demos/mqtt/mqtt_demo_subscription_manager/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_subscription_manager/demo_config.h b/demos/mqtt/mqtt_demo_subscription_manager/demo_config.h index 5edffc2476..b2470432da 100644 --- a/demos/mqtt/mqtt_demo_subscription_manager/demo_config.h +++ b/demos/mqtt/mqtt_demo_subscription_manager/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_subscription_manager/mqtt_demo_subscription_manager.c b/demos/mqtt/mqtt_demo_subscription_manager/mqtt_demo_subscription_manager.c index 42b68bae00..1decd4abe4 100644 --- a/demos/mqtt/mqtt_demo_subscription_manager/mqtt_demo_subscription_manager.c +++ b/demos/mqtt/mqtt_demo_subscription_manager/mqtt_demo_subscription_manager.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.c b/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.c index 34673d8b07..f915150af5 100644 --- a/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.c +++ b/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.h b/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.h index 8f56d3a524..cac2fd5d97 100644 --- a/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.h +++ b/demos/mqtt/mqtt_demo_subscription_manager/subscription-manager/mqtt_subscription_manager.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/common/include/core_pkcs11_config.h b/demos/pkcs11/common/include/core_pkcs11_config.h index 4a18c29ce6..5d3a32f581 100644 --- a/demos/pkcs11/common/include/core_pkcs11_config.h +++ b/demos/pkcs11/common/include/core_pkcs11_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/common/include/demo_helpers.h b/demos/pkcs11/common/include/demo_helpers.h index c6d892f5dc..c75d2be6d6 100644 --- a/demos/pkcs11/common/include/demo_helpers.h +++ b/demos/pkcs11/common/include/demo_helpers.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/common/src/demo_helpers.c b/demos/pkcs11/common/src/demo_helpers.c index 2285e63bb4..4e601ee85f 100644 --- a/demos/pkcs11/common/src/demo_helpers.c +++ b/demos/pkcs11/common/src/demo_helpers.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/pkcs11_demo_management_and_rng/pkcs11_demo_management_and_rng.c b/demos/pkcs11/pkcs11_demo_management_and_rng/pkcs11_demo_management_and_rng.c index 5a01c9b05a..50c69fc494 100644 --- a/demos/pkcs11/pkcs11_demo_management_and_rng/pkcs11_demo_management_and_rng.c +++ b/demos/pkcs11/pkcs11_demo_management_and_rng/pkcs11_demo_management_and_rng.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/pkcs11_demo_mechanisms_and_digests/pkcs11_demo_mechanisms_and_digests.c b/demos/pkcs11/pkcs11_demo_mechanisms_and_digests/pkcs11_demo_mechanisms_and_digests.c index b97ffbb55e..1760ec9c24 100644 --- a/demos/pkcs11/pkcs11_demo_mechanisms_and_digests/pkcs11_demo_mechanisms_and_digests.c +++ b/demos/pkcs11/pkcs11_demo_mechanisms_and_digests/pkcs11_demo_mechanisms_and_digests.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/pkcs11_demo_objects/pkcs11_demo_objects.c b/demos/pkcs11/pkcs11_demo_objects/pkcs11_demo_objects.c index 04b3d57b3b..27d08ec9e1 100644 --- a/demos/pkcs11/pkcs11_demo_objects/pkcs11_demo_objects.c +++ b/demos/pkcs11/pkcs11_demo_objects/pkcs11_demo_objects.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/pkcs11/pkcs11_demo_sign_and_verify/pkcs11_demo_sign_and_verify.c b/demos/pkcs11/pkcs11_demo_sign_and_verify/pkcs11_demo_sign_and_verify.c index 89224710b7..0d454cadf4 100644 --- a/demos/pkcs11/pkcs11_demo_sign_and_verify/pkcs11_demo_sign_and_verify.c +++ b/demos/pkcs11/pkcs11_demo_sign_and_verify/pkcs11_demo_sign_and_verify.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/core_mqtt_config.h b/demos/shadow/shadow_demo_main/core_mqtt_config.h index 872b469152..2e448b54eb 100644 --- a/demos/shadow/shadow_demo_main/core_mqtt_config.h +++ b/demos/shadow/shadow_demo_main/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/demo_config.h b/demos/shadow/shadow_demo_main/demo_config.h index 6d71b01886..87653ae9b3 100644 --- a/demos/shadow/shadow_demo_main/demo_config.h +++ b/demos/shadow/shadow_demo_main/demo_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/shadow_config.h b/demos/shadow/shadow_demo_main/shadow_config.h index 46aca8b8e1..ae2049dd54 100755 --- a/demos/shadow/shadow_demo_main/shadow_config.h +++ b/demos/shadow/shadow_demo_main/shadow_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/shadow_demo_helpers.c b/demos/shadow/shadow_demo_main/shadow_demo_helpers.c index 2f935bdde3..346c836497 100644 --- a/demos/shadow/shadow_demo_main/shadow_demo_helpers.c +++ b/demos/shadow/shadow_demo_main/shadow_demo_helpers.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/shadow_demo_helpers.h b/demos/shadow/shadow_demo_main/shadow_demo_helpers.h index e23597e129..0383d890c2 100755 --- a/demos/shadow/shadow_demo_main/shadow_demo_helpers.h +++ b/demos/shadow/shadow_demo_main/shadow_demo_helpers.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/demos/shadow/shadow_demo_main/shadow_demo_main.c b/demos/shadow/shadow_demo_main/shadow_demo_main.c index 9835e0b7b7..3f0e74190b 100644 --- a/demos/shadow/shadow_demo_main/shadow_demo_main.c +++ b/demos/shadow/shadow_demo_main/shadow_demo_main.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 419f3ae9ea..6fafce3f42 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = "AWS IoT Device SDK C" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 202211.00 +PROJECT_NUMBER = 202412.00 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/integration-test/http/core_http_config.h b/integration-test/http/core_http_config.h index bfb587b2f7..b46913f997 100644 --- a/integration-test/http/core_http_config.h +++ b/integration-test/http/core_http_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/http/http_system_test.c b/integration-test/http/http_system_test.c index c2f35d62b2..cd8932229d 100644 --- a/integration-test/http/http_system_test.c +++ b/integration-test/http/http_system_test.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/http/test_config.h b/integration-test/http/test_config.h index c465ce2272..02101e7e98 100644 --- a/integration-test/http/test_config.h +++ b/integration-test/http/test_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/mqtt/core_mqtt_config.h b/integration-test/mqtt/core_mqtt_config.h index f78bcb90e9..7f47738141 100644 --- a/integration-test/mqtt/core_mqtt_config.h +++ b/integration-test/mqtt/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/mqtt/mqtt_system_test.c b/integration-test/mqtt/mqtt_system_test.c index c3d801ea60..6e0594f736 100644 --- a/integration-test/mqtt/mqtt_system_test.c +++ b/integration-test/mqtt/mqtt_system_test.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/mqtt/test_config.h b/integration-test/mqtt/test_config.h index 6a75bb77f4..7c7d8f87c5 100644 --- a/integration-test/mqtt/test_config.h +++ b/integration-test/mqtt/test_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/shadow/core_mqtt_config.h b/integration-test/shadow/core_mqtt_config.h index f78bcb90e9..7f47738141 100644 --- a/integration-test/shadow/core_mqtt_config.h +++ b/integration-test/shadow/core_mqtt_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/shadow/shadow_config.h b/integration-test/shadow/shadow_config.h index b5d988620c..c424ff7db3 100644 --- a/integration-test/shadow/shadow_config.h +++ b/integration-test/shadow/shadow_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/shadow/shadow_system_test.c b/integration-test/shadow/shadow_system_test.c index 9c20c90407..be8d155a76 100644 --- a/integration-test/shadow/shadow_system_test.c +++ b/integration-test/shadow/shadow_system_test.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/integration-test/shadow/test_config.h b/integration-test/shadow/test_config.h index a9fae636e7..57ffceb374 100644 --- a/integration-test/shadow/test_config.h +++ b/integration-test/shadow/test_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/include/clock.h b/platform/include/clock.h index 82921f9b97..e7cf0d8dc9 100644 --- a/platform/include/clock.h +++ b/platform/include/clock.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/clock_posix.c b/platform/posix/clock_posix.c index 0dfe3c71bd..7fd3295203 100644 --- a/platform/posix/clock_posix.c +++ b/platform/posix/clock_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/include/mbedtls_config.h b/platform/posix/include/mbedtls_config.h index d2b1a90607..e0a5e79582 100644 --- a/platform/posix/include/mbedtls_config.h +++ b/platform/posix/include/mbedtls_config.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/include/mbedtls_pkcs11_posix.h b/platform/posix/transport/include/mbedtls_pkcs11_posix.h index 18aafdbe7d..a815f52dcf 100644 --- a/platform/posix/transport/include/mbedtls_pkcs11_posix.h +++ b/platform/posix/transport/include/mbedtls_pkcs11_posix.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/include/openssl_posix.h b/platform/posix/transport/include/openssl_posix.h index cf8bdb850b..77440c9497 100644 --- a/platform/posix/transport/include/openssl_posix.h +++ b/platform/posix/transport/include/openssl_posix.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/include/plaintext_posix.h b/platform/posix/transport/include/plaintext_posix.h index bc3fe8698c..604d25be2c 100644 --- a/platform/posix/transport/include/plaintext_posix.h +++ b/platform/posix/transport/include/plaintext_posix.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/include/sockets_posix.h b/platform/posix/transport/include/sockets_posix.h index 82d20375b2..f3e517c17d 100644 --- a/platform/posix/transport/include/sockets_posix.h +++ b/platform/posix/transport/include/sockets_posix.h @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/src/mbedtls_pkcs11_posix.c b/platform/posix/transport/src/mbedtls_pkcs11_posix.c index b5f22af362..a0292e7891 100644 --- a/platform/posix/transport/src/mbedtls_pkcs11_posix.c +++ b/platform/posix/transport/src/mbedtls_pkcs11_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/src/openssl_posix.c b/platform/posix/transport/src/openssl_posix.c index 1cfe39a8db..983de83f9d 100644 --- a/platform/posix/transport/src/openssl_posix.c +++ b/platform/posix/transport/src/openssl_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/platform/posix/transport/src/plaintext_posix.c b/platform/posix/transport/src/plaintext_posix.c index 21a0fc155c..f8c5bf67ff 100644 --- a/platform/posix/transport/src/plaintext_posix.c +++ b/platform/posix/transport/src/plaintext_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/platform/posix/transport/src/sockets_posix.c b/platform/posix/transport/src/sockets_posix.c index a6a5cc5947..c40770ea99 100644 --- a/platform/posix/transport/src/sockets_posix.c +++ b/platform/posix/transport/src/sockets_posix.c @@ -1,5 +1,5 @@ /* - * AWS IoT Device SDK for Embedded C 202211.00 + * AWS IoT Device SDK for Embedded C 202412.00 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of