Skip to content

Commit 9316372

Browse files
authored
Update CHANGELOG and file versioning for upcoming release (#23)
1 parent 71f35c9 commit 9316372

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog for backoffAlgorithm Library
22

3-
## v1.0.0 December 2020
3+
## v1.0.1 (February 2020)
4+
5+
### Changes
6+
7+
- [#18](https://github.com/FreeRTOS/backoffAlgorithm/pull/18), [#19](https://github.com/FreeRTOS/backoffAlgorithm/pull/19), and [#20](https://github.com/FreeRTOS/backoffAlgorithm/pull/20) Documentation fixes.
8+
9+
## v1.0.0 (December 2020)
410

511
This is the first release of the backoffAlgorithm library in this repository.
612

docs/doxygen/config.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "backoffAlgorithm"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "v1.0.0"
41+
PROJECT_NUMBER = "v1.0.1"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# 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.0.0"
2+
version: "v1.0.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.0.0
2+
* backoffAlgorithm v1.0.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

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.0.0
2+
* backoffAlgorithm v1.0.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

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.0.0
2+
* backoffAlgorithm v1.0.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

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.0.0
2+
* backoffAlgorithm v1.0.1
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

0 commit comments

Comments
 (0)