Skip to content

Commit

Permalink
[v1.4.1] Update changelog, version numbers and .md files for release (#…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
chinglee-iot committed Jun 18, 2024
1 parent fb080ac commit 1d5498f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion source/backoff_algorithm.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/include/backoff_algorithm.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/backoff_algorithm_utest.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/unit-test/catch_assert.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1d5498f

Please sign in to comment.