From bc1509cb70b861b3b4985bde76296cb75c7046d9 Mon Sep 17 00:00:00 2001 From: Avi Date: Tue, 27 Sep 2022 14:49:22 +1000 Subject: [PATCH 1/2] Fix #83, Remove unnecessary parentheses around return values. --- fsw/src/sample_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsw/src/sample_lib.c b/fsw/src/sample_lib.c index 1a6fcbf..0b45272 100644 --- a/fsw/src/sample_lib.c +++ b/fsw/src/sample_lib.c @@ -76,7 +76,7 @@ int32 SAMPLE_LIB_Function(void) { OS_printf("SAMPLE_LIB_Function called, buffer=\'%s\'\n", SAMPLE_LIB_Buffer); - return (CFE_SUCCESS); + return CFE_SUCCESS; } /* End SAMPLE_LIB_Function */ From 73e5357028796b1a2a0fd8792d9397d3e57d9be2 Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 3 Oct 2022 17:06:14 -0400 Subject: [PATCH 2/2] Bump to v1.3.0-rc4+dev20 --- README.md | 4 ++++ fsw/src/sample_lib_version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f81b98b..408b4ce 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ sample_lib implements SAMPLE_Function, as an example for how to build and link a ## Version History +### Development Build: v1.3.0-rc4+dev20 +- Remove unnecessary parentheses around return values. +- See + ### Development Build: v1.3.0-rc4+dev16 - Update Copyright Headers diff --git a/fsw/src/sample_lib_version.h b/fsw/src/sample_lib_version.h index 586156e..0e35ebd 100644 --- a/fsw/src/sample_lib_version.h +++ b/fsw/src/sample_lib_version.h @@ -26,7 +26,7 @@ /* Development Build Macro Definitions */ -#define SAMPLE_LIB_BUILD_NUMBER 16 /*!< Development Build: Number of commits since baseline */ +#define SAMPLE_LIB_BUILD_NUMBER 20 /*!< Development Build: Number of commits since baseline */ #define SAMPLE_LIB_BUILD_BASELINE \ "v1.3.0-rc4" /*!< Development Build: git tag that is the base for the current development */