Skip to content

Commit

Permalink
[V1.5.0] Update changelog, version numbers and .md files for release (#…
Browse files Browse the repository at this point in the history
…97)

* Update changelog

* Version update

* Fix unintended changes
  • Loading branch information
tony-josi-aws committed May 8, 2024
1 parent 18646b8 commit 8be3560
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for AWS IoT Jobs Library

## 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

## v1.4.0 (November 2023)
- [#90](https://github.com/aws/Jobs-for-AWS-IoT-embedded-sdk/pull/90) Update doxygen to reflect addition of OTA Job Parser
- [#88](https://github.com/aws/Jobs-for-AWS-IoT-embedded-sdk/pull/88) ADD OTA Job Parser for parsing out the fields of an incoming Job Document sent to a device from AWS IoT
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.4.0
PROJECT_NUMBER = v1.5.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.4.0"
version: "v1.5.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.4.0
* AWS IoT Jobs v1.5.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.4.0
* AWS IoT Jobs v1.5.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/otaJobParser/include/job_parser.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
Expand Down
2 changes: 1 addition & 1 deletion source/otaJobParser/include/ota_job_processor.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
Expand Down
2 changes: 1 addition & 1 deletion source/otaJobParser/job_parser.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
Expand Down
2 changes: 1 addition & 1 deletion source/otaJobParser/ota_job_handler.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
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.22.0)

project(
"AWS IoT Jobs Tests"
VERSION 1.4.0
VERSION 1.5.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.4.0
VERSION 1.5.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.4.0
* AWS IoT Jobs v1.5.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 test/unit-test/job_parser_utest.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
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.4.0
* AWS IoT Jobs v1.5.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 test/unit-test/ota_job_handler_utest.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* AWS IoT Jobs v1.4.0
* AWS IoT Jobs v1.5.0
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT
*
Expand Down

0 comments on commit 8be3560

Please sign in to comment.