Skip to content

Commit 4c39197

Browse files
authored
Merge pull request #301 from eclipse-threadx/version-642
Version 6.4.2
2 parents c78d650 + a6478d7 commit 4c39197

File tree

15 files changed

+27
-13
lines changed

15 files changed

+27
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ compile_commands.json
1414
CTestTestfile.cmake
1515
.run.sh
1616

17+
scripts/openssl*

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22

33
# Set up the project
44
project(netxduo

common/inc/nx_api.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/***************************************************************************
22
* Copyright (c) 2024 Microsoft Corporation
3+
* Copyright (c) 2025-present Eclipse ThreadX Contributors
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the MIT License which is available at
@@ -109,6 +110,9 @@
109110
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
110111
/* update version number, */
111112
/* resulting in version 6.4.1 */
113+
/* 02-19-2025 Frédéric Desbiens Modified comment(s), */
114+
/* update version number, */
115+
/* resulting in version 6.4.2 */
112116
/* */
113117
/**************************************************************************/
114118

@@ -525,7 +529,7 @@ VOID _nx_trace_event_update(TX_TRACE_BUFFER_ENTRY *event, ULONG timestamp, ULONG
525529
#define AZURE_RTOS_NETXDUO
526530
#define NETXDUO_MAJOR_VERSION 6
527531
#define NETXDUO_MINOR_VERSION 4
528-
#define NETXDUO_PATCH_VERSION 1
532+
#define NETXDUO_PATCH_VERSION 2
529533

530534
/* Define the following symbols for backward compatibility */
531535
#define EL_PRODUCT_NETXDUO

nx_secure/inc/nx_secure_tls.h

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/***************************************************************************
2-
* Copyright (c) 2024 Microsoft Corporation
2+
* Copyright (c) 2024 Microsoft Corporation
3+
* Copyright (c) 2025-present Eclipse ThreadX Contributors
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the MIT License which is available at
@@ -109,6 +110,12 @@
109110
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
110111
/* update version number, */
111112
/* resulting in version 6.4.1 */
113+
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
114+
/* update version number, */
115+
/* resulting in version 6.4.1 */
116+
/* 02-19-2025 Frédéric Desbiens Modified comment(s), */
117+
/* update version number, */
118+
/* resulting in version 6.4.2 */
112119
/* */
113120
/**************************************************************************/
114121

@@ -172,7 +179,7 @@ extern "C" {
172179
#define AZURE_RTOS_NETX_SECURE
173180
#define NETX_SECURE_MAJOR_VERSION 6
174181
#define NETX_SECURE_MINOR_VERSION 4
175-
#define NETX_SECURE_PATCH_VERSION 1
182+
#define NETX_SECURE_PATCH_VERSION 2
176183

177184
/* The following symbols are defined for backward compatibility reasons. */
178185
#define EL_PRODUCT_NETX_SECURE

test/cmake/crypto/regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22
cmake_policy(SET CMP0057 NEW)
33

44
project(regression_test LANGUAGES C)

test/cmake/crypto/regression/crypto_standalone.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22
set(CPU_ARCH "linux")
33
set(COMPILER "gnu")
44

test/cmake/filex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 1312f87f3b90c73c8db3aa1ccbadf15c60fe04bb

test/cmake/mqtt/regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22
cmake_policy(SET CMP0057 NEW)
33

44
project(regression_test LANGUAGES C)

test/cmake/mqtt_interoperability/regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22
cmake_policy(SET CMP0057 NEW)
33

44
project(regression_test LANGUAGES C)

test/cmake/netxduo/regression/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22
cmake_policy(SET CMP0057 NEW)
33

44
project(regression_test LANGUAGES C)

0 commit comments

Comments
 (0)