diff --git a/CHANGELOG.md b/CHANGELOG.md index be626e1..94df58d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog for AWS IoT Jobs Library +## v1.5.1 (June 2024) +- Fix doxygen deployment on Github + ## v1.5.0 (May 2024) - [#95](https://github.com/aws/Jobs-for-AWS-IoT-embedded-sdk/pull/95) Fix misra violations - [#93](https://github.com/aws/Jobs-for-AWS-IoT-embedded-sdk/pull/93) Performance and safety improvements diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 403997b..2830393 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = "AWS IoT Jobs" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.5.0 +PROJECT_NUMBER = v1.5.1 # 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/manifest.yml b/manifest.yml index 9d2c3a1..2f1930a 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "Jobs-for-AWS-IoT-embedded-sdk" -version: "v1.5.0" +version: "v1.5.1" description: | "Library for using the AWS IoT Jobs service on embedded devices.\n" license: "MIT" diff --git a/source/include/jobs.h b/source/include/jobs.h index 5b22776..11caba6 100644 --- a/source/include/jobs.h +++ b/source/include/jobs.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/jobs.c b/source/jobs.c index 83c44d4..9614d90 100644 --- a/source/jobs.c +++ b/source/jobs.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/otaJobParser/include/job_parser.h b/source/otaJobParser/include/job_parser.h index d16a24f..3fcf537 100644 --- a/source/otaJobParser/include/job_parser.h +++ b/source/otaJobParser/include/job_parser.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * diff --git a/source/otaJobParser/include/ota_job_processor.h b/source/otaJobParser/include/ota_job_processor.h index eb2519b..112872f 100644 --- a/source/otaJobParser/include/ota_job_processor.h +++ b/source/otaJobParser/include/ota_job_processor.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * diff --git a/source/otaJobParser/job_parser.c b/source/otaJobParser/job_parser.c index 92d8fea..4a1da8a 100644 --- a/source/otaJobParser/job_parser.c +++ b/source/otaJobParser/job_parser.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * diff --git a/source/otaJobParser/ota_job_handler.c b/source/otaJobParser/ota_job_handler.c index 453a71b..9735f6c 100644 --- a/source/otaJobParser/ota_job_handler.c +++ b/source/otaJobParser/ota_job_handler.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index ad34195..2847964 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.22.0) project( "AWS IoT Jobs Tests" - VERSION 1.5.0 + VERSION 1.5.1 LANGUAGES C) # Allow the project to be organized into folders. diff --git a/test/unit-test/catch_assert.h b/test/unit-test/catch_assert.h index 8f3d45e..c6ba1df 100644 --- a/test/unit-test/catch_assert.h +++ b/test/unit-test/catch_assert.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/job_parser_utest.c b/test/unit-test/job_parser_utest.c index b53af28..af4abdb 100644 --- a/test/unit-test/job_parser_utest.c +++ b/test/unit-test/job_parser_utest.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * diff --git a/test/unit-test/jobs_utest.c b/test/unit-test/jobs_utest.c index 48b2ebb..2591bbc 100644 --- a/test/unit-test/jobs_utest.c +++ b/test/unit-test/jobs_utest.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ota_job_handler_utest.c b/test/unit-test/ota_job_handler_utest.c index 10c78eb..be50547 100644 --- a/test/unit-test/ota_job_handler_utest.c +++ b/test/unit-test/ota_job_handler_utest.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.5.0 + * AWS IoT Jobs v1.5.1 * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT *