diff --git a/CHANGELOG.md b/CHANGELOG.md index 6926120..5bf3939 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" 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/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. 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