From 95249659564e2bb1f52a2822250a01c1a9e00db0 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Tue, 18 Jun 2024 11:10:35 +0800 Subject: [PATCH 1/4] Update version v1.4.1 in manifest doxygen and changelog --- CHANGELOG.md | 5 +++++ docs/doxygen/config.doxyfile | 2 +- manifest.yml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6926120..06aecea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog for backoffAlgorithm Library +## v1.4.1 (June 2024) + +### Changes +Fix doxygen deployment on Github. + ## v1.4.0 (May 2024) ### Changes diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index 66e1320..e5e835a 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.4.0 +PROJECT_NUMBER = v1.4.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 bec28fb..f7a5e32 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "backoffAlgorithm" -version: "v1.4.0" +version: "v1.4.1" description: | "Algorithm for calculating exponential backoff with jitter for network retry attempts.\n" license: "MIT" From 4c9fbcac8bef08fce026573e9ccc199671bbba0e Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Tue, 18 Jun 2024 11:12:08 +0800 Subject: [PATCH 2/4] Update version v1.4.1 in source and header files --- 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 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/backoff_algorithm.c b/source/backoff_algorithm.c index aa49be2..bd8916f 100644 --- a/source/backoff_algorithm.c +++ b/source/backoff_algorithm.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.4.0 + * backoffAlgorithm v1.4.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 6abcbfc..9b72e84 100644 --- a/source/include/backoff_algorithm.h +++ b/source/include/backoff_algorithm.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.4.0 + * backoffAlgorithm v1.4.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 67f0feb..2dfecd4 100644 --- a/test/unit-test/backoff_algorithm_utest.c +++ b/test/unit-test/backoff_algorithm_utest.c @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.4.0 + * backoffAlgorithm v1.4.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 8fcaf8a..2c216d3 100644 --- a/test/unit-test/catch_assert.h +++ b/test/unit-test/catch_assert.h @@ -1,5 +1,5 @@ /* - * backoffAlgorithm v1.4.0 + * backoffAlgorithm v1.4.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT From a7b3cdd51c6e3469a9c64ea0d91fb80313278647 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Tue, 18 Jun 2024 11:54:16 +0800 Subject: [PATCH 3/4] Update version v1.4.1 in test cmakefile --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5c4db23..fdb6b95 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required( VERSION 3.13.0 ) project( "backoffAlgorithm unit test" - VERSION 1.3.0 + VERSION 1.4.1 LANGUAGES C ) # Allow the project to be organized into folders. From 440b09dd18e0cc4860158cbc71777e5acfd27281 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Tue, 18 Jun 2024 11:54:55 +0800 Subject: [PATCH 4/4] format changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06aecea..5bf3939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## v1.4.1 (June 2024) ### Changes -Fix doxygen deployment on Github. +- Fix doxygen deployment on Github. ## v1.4.0 (May 2024)