From 544d0c5a64df56ea903bcf3ee37cf934b36a4a63 Mon Sep 17 00:00:00 2001 From: chinglee-iot <61685396+chinglee-iot@users.noreply.github.com> Date: Tue, 18 Jun 2024 14:47:10 +0800 Subject: [PATCH] [v1.3.1] Update changelog, version numbers and .md files for release (#95) * Update version v1.3.1 in doxygen, manifest and changelog * Update version v1.3.1 in source and header files * Update version v1.3.1 in test cmakefile * format changelog --- CHANGELOG.md | 5 +++++ docs/doxygen/config.doxyfile | 2 +- manifest.yml | 2 +- source/core_sntp_client.c | 2 +- source/core_sntp_serializer.c | 2 +- source/include/core_sntp_client.h | 2 +- source/include/core_sntp_config_defaults.h | 2 +- source/include/core_sntp_serializer.h | 2 +- test/CMakeLists.txt | 2 +- test/cbmc/include/core_sntp_cbmc_state.h | 2 +- test/cbmc/include/core_sntp_config.h | 2 +- test/cbmc/include/core_sntp_stubs.h | 2 +- .../Sntp_CalculatePollInterval_harness.c | 2 +- .../Sntp_ConvertToUnixTime/Sntp_ConvertToUnixTime_harness.c | 2 +- .../Sntp_DeserializeResponse_harness.c | 2 +- test/cbmc/proofs/Sntp_Init/Sntp_Init_harness.c | 2 +- .../Sntp_ReceiveTimeResponse_harness.c | 2 +- .../Sntp_SendTimeRequest/Sntp_SendTimeRequest_harness.c | 2 +- .../Sntp_SerializeRequest/Sntp_SerializeRequest_harness.c | 2 +- test/cbmc/sources/core_sntp_cbmc_state.c | 2 +- test/cbmc/stubs/core_sntp_stubs.c | 2 +- test/unit-test/core_sntp_client_utest.c | 2 +- test/unit-test/core_sntp_config.h | 2 +- test/unit-test/core_sntp_serializer_utest.c | 2 +- 24 files changed, 28 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af3f763..a879df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog for coreSNTP Library +## v1.3.1 (June 2024) + +### Changes + - Fix doxygen deployment on Github. + ## v1.3.0 (May 2024) ### Changes diff --git a/docs/doxygen/config.doxyfile b/docs/doxygen/config.doxyfile index efee8ec..97ebe8b 100644 --- a/docs/doxygen/config.doxyfile +++ b/docs/doxygen/config.doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = coreSNTP # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v1.3.0 +PROJECT_NUMBER = v1.3.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 diff --git a/manifest.yml b/manifest.yml index 89f35ea..9f07994 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,5 +1,5 @@ name : "coreSNTP" -version: "v1.3.0" +version: "v1.3.1" description: | "SNTP client library to allow embedded devices to synchronize time with time servers.\n" license: "MIT" diff --git a/source/core_sntp_client.c b/source/core_sntp_client.c index 478276e..4245098 100644 --- a/source/core_sntp_client.c +++ b/source/core_sntp_client.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/core_sntp_serializer.c b/source/core_sntp_serializer.c index 31ed0d6..bc65f3b 100644 --- a/source/core_sntp_serializer.c +++ b/source/core_sntp_serializer.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/core_sntp_client.h b/source/include/core_sntp_client.h index f07364d..15658b5 100644 --- a/source/include/core_sntp_client.h +++ b/source/include/core_sntp_client.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/core_sntp_config_defaults.h b/source/include/core_sntp_config_defaults.h index 9b11ca7..33d021a 100644 --- a/source/include/core_sntp_config_defaults.h +++ b/source/include/core_sntp_config_defaults.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/core_sntp_serializer.h b/source/include/core_sntp_serializer.h index 4dfdb4a..9f062d9 100644 --- a/source/include/core_sntp_serializer.h +++ b/source/include/core_sntp_serializer.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c410157..af28f60 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required( VERSION 3.13.0 ) project( "coreSNTP tests" - VERSION 1.2.0 + VERSION 1.3.1 LANGUAGES C ) # Allow the project to be organized into folders. diff --git a/test/cbmc/include/core_sntp_cbmc_state.h b/test/cbmc/include/core_sntp_cbmc_state.h index b950768..36387db 100644 --- a/test/cbmc/include/core_sntp_cbmc_state.h +++ b/test/cbmc/include/core_sntp_cbmc_state.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/include/core_sntp_config.h b/test/cbmc/include/core_sntp_config.h index 2375045..cba0f85 100644 --- a/test/cbmc/include/core_sntp_config.h +++ b/test/cbmc/include/core_sntp_config.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/include/core_sntp_stubs.h b/test/cbmc/include/core_sntp_stubs.h index cf65748..119b5fc 100644 --- a/test/cbmc/include/core_sntp_stubs.h +++ b/test/cbmc/include/core_sntp_stubs.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_CalculatePollInterval/Sntp_CalculatePollInterval_harness.c b/test/cbmc/proofs/Sntp_CalculatePollInterval/Sntp_CalculatePollInterval_harness.c index 1eef962..919d61a 100644 --- a/test/cbmc/proofs/Sntp_CalculatePollInterval/Sntp_CalculatePollInterval_harness.c +++ b/test/cbmc/proofs/Sntp_CalculatePollInterval/Sntp_CalculatePollInterval_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_ConvertToUnixTime/Sntp_ConvertToUnixTime_harness.c b/test/cbmc/proofs/Sntp_ConvertToUnixTime/Sntp_ConvertToUnixTime_harness.c index c56802e..c684811 100644 --- a/test/cbmc/proofs/Sntp_ConvertToUnixTime/Sntp_ConvertToUnixTime_harness.c +++ b/test/cbmc/proofs/Sntp_ConvertToUnixTime/Sntp_ConvertToUnixTime_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_DeserializeResponse/Sntp_DeserializeResponse_harness.c b/test/cbmc/proofs/Sntp_DeserializeResponse/Sntp_DeserializeResponse_harness.c index 0377cb1..efe2b3a 100644 --- a/test/cbmc/proofs/Sntp_DeserializeResponse/Sntp_DeserializeResponse_harness.c +++ b/test/cbmc/proofs/Sntp_DeserializeResponse/Sntp_DeserializeResponse_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_Init/Sntp_Init_harness.c b/test/cbmc/proofs/Sntp_Init/Sntp_Init_harness.c index 4cdc65d..e1ae92b 100644 --- a/test/cbmc/proofs/Sntp_Init/Sntp_Init_harness.c +++ b/test/cbmc/proofs/Sntp_Init/Sntp_Init_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_ReceiveTimeResponse/Sntp_ReceiveTimeResponse_harness.c b/test/cbmc/proofs/Sntp_ReceiveTimeResponse/Sntp_ReceiveTimeResponse_harness.c index c18717e..1cf2826 100644 --- a/test/cbmc/proofs/Sntp_ReceiveTimeResponse/Sntp_ReceiveTimeResponse_harness.c +++ b/test/cbmc/proofs/Sntp_ReceiveTimeResponse/Sntp_ReceiveTimeResponse_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_SendTimeRequest/Sntp_SendTimeRequest_harness.c b/test/cbmc/proofs/Sntp_SendTimeRequest/Sntp_SendTimeRequest_harness.c index 0905045..bd5dfbb 100644 --- a/test/cbmc/proofs/Sntp_SendTimeRequest/Sntp_SendTimeRequest_harness.c +++ b/test/cbmc/proofs/Sntp_SendTimeRequest/Sntp_SendTimeRequest_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/proofs/Sntp_SerializeRequest/Sntp_SerializeRequest_harness.c b/test/cbmc/proofs/Sntp_SerializeRequest/Sntp_SerializeRequest_harness.c index 503d862..036952a 100644 --- a/test/cbmc/proofs/Sntp_SerializeRequest/Sntp_SerializeRequest_harness.c +++ b/test/cbmc/proofs/Sntp_SerializeRequest/Sntp_SerializeRequest_harness.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/sources/core_sntp_cbmc_state.c b/test/cbmc/sources/core_sntp_cbmc_state.c index 4948fa1..f913eea 100644 --- a/test/cbmc/sources/core_sntp_cbmc_state.c +++ b/test/cbmc/sources/core_sntp_cbmc_state.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/cbmc/stubs/core_sntp_stubs.c b/test/cbmc/stubs/core_sntp_stubs.c index e13a9f3..1de6a84 100644 --- a/test/cbmc/stubs/core_sntp_stubs.c +++ b/test/cbmc/stubs/core_sntp_stubs.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/core_sntp_client_utest.c b/test/unit-test/core_sntp_client_utest.c index 41e0281..d39727f 100644 --- a/test/unit-test/core_sntp_client_utest.c +++ b/test/unit-test/core_sntp_client_utest.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/core_sntp_config.h b/test/unit-test/core_sntp_config.h index a80d03f..25b6156 100644 --- a/test/unit-test/core_sntp_config.h +++ b/test/unit-test/core_sntp_config.h @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/core_sntp_serializer_utest.c b/test/unit-test/core_sntp_serializer_utest.c index 4875e1f..d293b9b 100644 --- a/test/unit-test/core_sntp_serializer_utest.c +++ b/test/unit-test/core_sntp_serializer_utest.c @@ -1,5 +1,5 @@ /* - * coreSNTP v1.3.0 + * coreSNTP v1.3.1 * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT