Skip to content

Commit 72717f0

Browse files
committed
Updating version number and adding PR to the changelog.md file
1 parent fede9a8 commit 72717f0

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for backoffAlgorithm Library
22

3+
## v1.3.1 (May 2024)
4+
5+
### Changes
6+
- [#51](https://github.com/FreeRTOS/backoffAlgorithm/pull/51) Update MISRA Check Information.
7+
- [#45](https://github.com/FreeRTOS/backoffAlgorithm/pull/45) Update doxygen version to 1.9.6.
8+
39
## v1.3.0 (October 2022)
410

511
### Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ attempting reconnections when they are unlikely to succeed.
2525
See memory requirements for this library
2626
[here](./docs/doxygen/include/size_table.md).
2727

28-
**backoffAlgorithm v1.3.0
29-
[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.0/source)
28+
**backoffAlgorithm v1.3.1
29+
[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.1/source)
3030
is part of the
3131
[FreeRTOS 202210.00 LTS](https://github.com/FreeRTOS/FreeRTOS-LTS/tree/202210.00-LTS)
3232
release.**

docs/doxygen/config.doxyfile

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

51-
PROJECT_NUMBER = v1.3.0
51+
PROJECT_NUMBER = v1.3.1
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 : "backoffAlgorithm"
2-
version: "v1.3.0"
2+
version: "v1.3.1"
33
description: |
44
"Algorithm for calculating exponential backoff with jitter for network retry attempts.\n"
55
license: "MIT"

source/backoff_algorithm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* backoffAlgorithm v1.3.0
2+
* backoffAlgorithm v1.3.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

source/include/backoff_algorithm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* backoffAlgorithm v1.3.0
2+
* backoffAlgorithm v1.3.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

test/unit-test/backoff_algorithm_utest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* backoffAlgorithm v1.3.0
2+
* backoffAlgorithm v1.3.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

test/unit-test/catch_assert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* backoffAlgorithm v1.3.0
2+
* backoffAlgorithm v1.3.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

0 commit comments

Comments
 (0)