Skip to content

Commit 1d5498f

Browse files
authored
[v1.4.1] Update changelog, version numbers and .md files for release (#58)
* Update version v1.4.1 in manifest doxygen and changelog * Update version v1.4.1 in source and header files * Update version v1.4.1 in test cmakefile * format changelog
1 parent fb080ac commit 1d5498f

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

CHANGELOG.md

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

3+
## v1.4.1 (June 2024)
4+
5+
### Changes
6+
- Fix doxygen deployment on Github.
7+
38
## v1.4.0 (May 2024)
49

510
### Changes

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.4.0
51+
PROJECT_NUMBER = v1.4.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.4.0"
2+
version: "v1.4.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.4.0
2+
* backoffAlgorithm v1.4.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.4.0
2+
* backoffAlgorithm v1.4.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* SPDX-License-Identifier: MIT

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required( VERSION 3.13.0 )
22
project( "backoffAlgorithm unit test"
3-
VERSION 1.3.0
3+
VERSION 1.4.1
44
LANGUAGES C )
55

66
# Allow the project to be organized into folders.

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.4.0
2+
* backoffAlgorithm v1.4.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.4.0
2+
* backoffAlgorithm v1.4.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)