From 72717f001e7aa547f5406944491b705b9b826bf6 Mon Sep 17 00:00:00 2001 From: Rahul Kar Date: Mon, 6 May 2024 18:27:35 +0000 Subject: [PATCH 1/3] Updating version number and adding PR to the changelog.md file --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- docs/doxygen/config.doxyfile | 2 +- manifest.yml | 2 +- source/backoff_algorithm.c | 2 +- source/include/backoff_algorithm.h | 2 +- test/unit-test/backoff_algorithm_utest.c | 2 +- test/unit-test/catch_assert.h | 2 +- 8 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1925c19..c2b07c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog for backoffAlgorithm Library +## v1.3.1 (May 2024) + +### Changes +- [#51](https://github.com/FreeRTOS/backoffAlgorithm/pull/51) Update MISRA Check Information. +- [#45](https://github.com/FreeRTOS/backoffAlgorithm/pull/45) Update doxygen version to 1.9.6. + ## v1.3.0 (October 2022) ### Changes diff --git a/README.md b/README.md index db2c885..4d2d72d 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ attempting reconnections when they are unlikely to succeed. See memory requirements for this library [here](./docs/doxygen/include/size_table.md). -**backoffAlgorithm v1.3.0 -[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.0/source) +**backoffAlgorithm v1.3.1 +[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.1/source) is part of the [FreeRTOS 202210.00 LTS](https://github.com/FreeRTOS/FreeRTOS-LTS/tree/202210.00-LTS) release.** diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index af41f28..294b9dd 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = backoffAlgorithm # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.3.0 +PROJECT_NUMBER = v1.3.1 # 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 6ee6fa5..291901d 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "backoffAlgorithm" -version: "v1.3.0" +version: "v1.3.1" description: | "Algorithm for calculating exponential backoff with jitter for network retry attempts.\n" license: "MIT" diff --git a/source/backoff_algorithm.c b/source/backoff_algorithm.c index fac59a1..1b9e64e 100644 --- a/source/backoff_algorithm.c +++ b/source/backoff_algorithm.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.0 + * backoffAlgorithm v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/backoff_algorithm.h b/source/include/backoff_algorithm.h index 4219cc3..f590146 100644 --- a/source/include/backoff_algorithm.h +++ b/source/include/backoff_algorithm.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.0 + * backoffAlgorithm v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/backoff_algorithm_utest.c b/test/unit-test/backoff_algorithm_utest.c index a61d7b7..70c5293 100644 --- a/test/unit-test/backoff_algorithm_utest.c +++ b/test/unit-test/backoff_algorithm_utest.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.0 + * backoffAlgorithm v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/catch_assert.h b/test/unit-test/catch_assert.h index 286bd31..723691a 100644 --- a/test/unit-test/catch_assert.h +++ b/test/unit-test/catch_assert.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.0 + * backoffAlgorithm v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT From 3de0233978e2bf638d9d782b60bb633844bce122 Mon Sep 17 00:00:00 2001 From: Rahul Kar Date: Mon, 6 May 2024 18:31:49 +0000 Subject: [PATCH 2/3] Revert version number change in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d2d72d..db2c885 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ attempting reconnections when they are unlikely to succeed. See memory requirements for this library [here](./docs/doxygen/include/size_table.md). -**backoffAlgorithm v1.3.1 -[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.1/source) +**backoffAlgorithm v1.3.0 +[source code](https://github.com/FreeRTOS/backoffAlgorithm/tree/v1.3.0/source) is part of the [FreeRTOS 202210.00 LTS](https://github.com/FreeRTOS/FreeRTOS-LTS/tree/202210.00-LTS) release.** From e32ddeae9a1da4c8f57c85ee45975e58d84b6efe Mon Sep 17 00:00:00 2001 From: Rahul Kar Date: Tue, 7 May 2024 05:41:14 +0000 Subject: [PATCH 3/3] update version number to 1.4.0 --- CHANGELOG.md | 2 +- docs/doxygen/config.doxyfile | 2 +- manifest.yml | 2 +- source/backoff_algorithm.c | 2 +- source/include/backoff_algorithm.h | 2 +- test/unit-test/backoff_algorithm_utest.c | 2 +- test/unit-test/catch_assert.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b07c7..6926120 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog for backoffAlgorithm Library -## v1.3.1 (May 2024) +## v1.4.0 (May 2024) ### Changes - [#51](https://github.com/FreeRTOS/backoffAlgorithm/pull/51) Update MISRA Check Information. diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 294b9dd..66e1320 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = backoffAlgorithm # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.3.1 +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 291901d..ddd9c97 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "backoffAlgorithm" -version: "v1.3.1" +version: "v1.4.0" description: | "Algorithm for calculating exponential backoff with jitter for network retry attempts.\n" license: "MIT" diff --git a/source/backoff_algorithm.c b/source/backoff_algorithm.c index 1b9e64e..aa49be2 100644 --- a/source/backoff_algorithm.c +++ b/source/backoff_algorithm.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.1 + * backoffAlgorithm v1.4.0 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/backoff_algorithm.h b/source/include/backoff_algorithm.h index f590146..6abcbfc 100644 --- a/source/include/backoff_algorithm.h +++ b/source/include/backoff_algorithm.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.1 + * backoffAlgorithm 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/backoff_algorithm_utest.c b/test/unit-test/backoff_algorithm_utest.c index 70c5293..67f0feb 100644 --- a/test/unit-test/backoff_algorithm_utest.c +++ b/test/unit-test/backoff_algorithm_utest.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.1 + * backoffAlgorithm 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/catch_assert.h b/test/unit-test/catch_assert.h index 723691a..8fcaf8a 100644 --- a/test/unit-test/catch_assert.h +++ b/test/unit-test/catch_assert.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.3.1 + * backoffAlgorithm v1.4.0 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT