Skip to content

Commit

Permalink
Changes to prepare for upcoming release
Browse files Browse the repository at this point in the history
  • Loading branch information
aggarw13 committed Feb 25, 2021
1 parent 71f35c9 commit 7c3bb6f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog for backoffAlgorithm Library

## v1.0.0 December 2020
## v1.0.1 (March 2020)

### Changes

- [#18](https://github.com/FreeRTOS/backoffAlgorithm/pull/19) and [#20](https://github.com/FreeRTOS/backoffAlgorithm/pull/20) Documentation fixes.

## v1.0.0 (December 2020)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "backoffAlgorithm"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "v1.0.0"
PROJECT_NUMBER = "V1.0.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.0.0"
version: "V1.0.1"
description: |
"Algorithm for calculating exponential backoff with jitter for network retry attempts.\n"
license: "MIT"
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.0.0
* backoffAlgorithm V1.0.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
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.0.0
* backoffAlgorithm V1.0.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
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.0.0
* backoffAlgorithm V1.0.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand Down
11 changes: 6 additions & 5 deletions test/unit-test/catch_assert.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* backoffAlgorithm v1.0.0
* backoffAlgorithm V1.0.1
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand Down Expand Up @@ -62,17 +62,18 @@ static void catchHandler_( int signal )
close( 2 ); \
if( setjmp( CATCH_JMPBUF ) == 0 ) \
{ \
try++; \
try ++; \
x; \
} \
else \
{ \
catch++; \
catch ++; \
} \
sigaction( SIGABRT, &saveSa, NULL ); \
dup2( saveFd, 2 ); \
close( saveFd ); \
TEST_ASSERT_EQUAL( try, catch ); \
} while( 0 )
TEST_ASSERT_EQUAL ( try , catch ); \
} \
while( 0 )

#endif /* ifndef CATCH_ASSERT_H_ */

0 comments on commit 7c3bb6f

Please sign in to comment.