diff --git a/README.md b/README.md index 6a1ece9..4b6ba35 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ and is distributed under the [MIT Open Source License](LICENSE). This library has gone through code quality checks including verification that no function has a -[GNU Complexity ](https://www.gnu.org/software/complexity/manual/complexity.html) -score over 8, and checks against deviations from mandatory rules in the -[MISRA coding standard ](https://www.misra.org.uk). Deviations from the MISRA +[GNU Complexity](https://www.gnu.org/software/complexity/manual/complexity.html) +score over 10, and checks against deviations from mandatory rules in the +[MISRA coding standard](https://www.misra.org.uk). Deviations from the MISRA C:2012 guidelines are documented under [MISRA Deviations](MISRA.md). This library has also undergone both static code analysis from [Coverity](https://scan.coverity.com/), and validation of memory safety with the diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 57aa102..8c1b1f6 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.3.0 +PROJECT_NUMBER = v1.4.0 # 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 e9138ba..5850cc6 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "Jobs-for-AWS-IoT-embedded-sdk" -version: "v1.3.0" +version: "v1.4.0" 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 a7d935e..0e56175 100644 --- a/source/include/jobs.h +++ b/source/include/jobs.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.3.0 + * AWS IoT Jobs v1.4.0 * 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 9a5fcbe..a9d8ad3 100644 --- a/source/jobs.c +++ b/source/jobs.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.3.0 + * AWS IoT Jobs v1.4.0 * 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 23ced31..244fa3e 100644 --- a/source/otaJobParser/include/job_parser.h +++ b/source/otaJobParser/include/job_parser.h @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file diff --git a/source/otaJobParser/include/ota_job_processor.h b/source/otaJobParser/include/ota_job_processor.h index 00473c4..a47a0e4 100644 --- a/source/otaJobParser/include/ota_job_processor.h +++ b/source/otaJobParser/include/ota_job_processor.h @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file diff --git a/source/otaJobParser/job_parser.c b/source/otaJobParser/job_parser.c index c64cef1..1c8d6d2 100644 --- a/source/otaJobParser/job_parser.c +++ b/source/otaJobParser/job_parser.c @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file diff --git a/source/otaJobParser/ota_job_handler.c b/source/otaJobParser/ota_job_handler.c index e0f7999..e06545e 100644 --- a/source/otaJobParser/ota_job_handler.c +++ b/source/otaJobParser/ota_job_handler.c @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c57c98d..b809d66 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.0) project( "AWS IoT Jobs Tests" - VERSION 1.3.0 + VERSION 1.4.0 LANGUAGES C) # Allow the project to be organized into folders. diff --git a/test/unit-test/CMakeLists.txt b/test/unit-test/CMakeLists.txt index dec5bca..7825eeb 100644 --- a/test/unit-test/CMakeLists.txt +++ b/test/unit-test/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16.0) project( "AWS IoT Jobs Tests" - VERSION 1.3.0 + VERSION 1.4.0 LANGUAGES C) # Include filepaths for source and include. diff --git a/test/unit-test/catch_assert.h b/test/unit-test/catch_assert.h index 04e8451..3c0597a 100644 --- a/test/unit-test/catch_assert.h +++ b/test/unit-test/catch_assert.h @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.3.0 + * AWS IoT Jobs v1.4.0 * 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 c32e0a9..0bd1fd1 100644 --- a/test/unit-test/job_parser_utest.c +++ b/test/unit-test/job_parser_utest.c @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file diff --git a/test/unit-test/jobs_utest.c b/test/unit-test/jobs_utest.c index c8f8199..5648e83 100644 --- a/test/unit-test/jobs_utest.c +++ b/test/unit-test/jobs_utest.c @@ -1,5 +1,5 @@ /* - * AWS IoT Jobs v1.3.0 + * AWS IoT Jobs v1.4.0 * 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 c060823..d9e78f6 100644 --- a/test/unit-test/ota_job_handler_utest.c +++ b/test/unit-test/ota_job_handler_utest.c @@ -1,5 +1,6 @@ /* - * Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. + * AWS IoT Jobs v1.4.0 + * Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT * * Licensed under the MIT License. See the LICENSE accompanying this file