Skip to content

Commit 0875dd6

Browse files
Merge pull request #29 from kar-rahul-aws/update_version_number
Update version number and add changelog
2 parents 341a096 + a9aecd0 commit 0875dd6

14 files changed

+18
-13
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
description: 'Commit ID to tag and create a release for'
88
required: true
99
version_number:
10-
description: 'Release Version Number (Eg, v1.0.0)'
10+
description: 'Release Version Number (Eg, v1.1.0)'
1111
required: true
1212

1313
jobs:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.1.0 (June 2024)
2+
- [#20](https://github.com/aws/aws-iot-core-mqtt-file-streams-embedded-c/pull/20) Move base64 decode table out of function to reduce function complexity.
3+
- [#22](https://github.com/aws/aws-iot-core-mqtt-file-streams-embedded-c/pull/22) Fix MISRA C 2012 violations.
4+
- [#23](https://github.com/aws/aws-iot-core-mqtt-file-streams-embedded-c/pull/23) Update API to return the fileID, blockID and blockSize.
5+
16
## v1.0.0 (November 2023)
27

38
This is the first release of the AWS IoT MQTT File Streaming Embedded C Library in this

docs/doxygen/config.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "MQTT File Streams Downloader"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = v1.0.0
51+
PROJECT_NUMBER = v1.1.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "AWS-IoT-Core-MQTT-File-Streams-Embedded-C"
2-
version: "v1.0.0"
2+
version: "v1.1.0"
33
description: |
44
"Library for transferring files to IoT devices via MQTT Streams .\n"
55
license: "MIT"

source/MQTTFileDownloader.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

source/MQTTFileDownloader_base64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

source/MQTTFileDownloader_cbor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

source/include/MQTTFileDownloader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

source/include/MQTTFileDownloader_base64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

source/include/MQTTFileDownloader_cbor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* AWS IoT Core MQTT File Streams Embedded C v1.0.0
2+
* AWS IoT Core MQTT File Streams Embedded C v1.1.0
33
* Copyright (C) 2023 Amazon.com, Inc. and its affiliates. All Rights Reserved.
44
* SPDX-License-Identifier: MIT
55
*

0 commit comments

Comments
 (0)