Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version numbers to v1.4.0 #92

Merged
merged 5 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion source/include/jobs.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/jobs.c
Original file line number Diff line number Diff line change
@@ -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.
Copy link
Member

@Skptak Skptak Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These files have
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
The header files have
* Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved.

We should find out which one we are supposed to use and update the other

*
* SPDX-License-Identifier: MIT
Expand Down
3 changes: 2 additions & 1 deletion source/otaJobParser/include/job_parser.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion source/otaJobParser/include/ota_job_processor.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion source/otaJobParser/job_parser.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion source/otaJobParser/ota_job_handler.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/catch_assert.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion test/unit-test/job_parser_utest.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/jobs_utest.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion test/unit-test/ota_job_handler_utest.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down