Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version number to 6.4.1 #49

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions common/inc/fx_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/* APPLICATION INTERFACE DEFINITION RELEASE */
/* */
/* fx_api.h PORTABLE C */
/* 6.4.0 */
/* 6.4.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
Expand Down Expand Up @@ -86,6 +86,9 @@
/* 12-31-2023 Xiuwen Cai Modified comment(s), and */
/* updated product constants, */
/* resulting in version 6.4.0 */
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
/* update version number, */
/* resulting in version 6.4.1 */
/* */
/**************************************************************************/

Expand Down Expand Up @@ -135,7 +138,7 @@ extern "C" {
#define AZURE_RTOS_FILEX
#define FILEX_MAJOR_VERSION 6
#define FILEX_MINOR_VERSION 4
#define FILEX_PATCH_VERSION 0
#define FILEX_PATCH_VERSION 1

/* Define the following symbols for backward compatibility */
#define EL_PRODUCT_FILEX
Expand Down
2 changes: 1 addition & 1 deletion ports/generic/inc/fx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ typedef unsigned long long ULONG64;

#ifdef FX_SYSTEM_INIT
CHAR _fx_version_id[] =
"Copyright (c) 2024 Microsoft Corporation. * FileX Generic Version 6.4.0 *";
"Copyright (c) 2024 Microsoft Corporation. * FileX Generic Version 6.4.1 *";
#else
extern CHAR _fx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/linux/gnu/inc/fx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ extern VOID fault_tolerant_apply_log_callback(struct FX_MEDIA_STRUCT *media_ptr,

#ifdef FX_SYSTEM_INIT
CHAR _fx_version_id[] =
"Copyright (c) 2024 Microsoft Corporation. * FileX Linux/GCC Version 6.4.0 *";
"Copyright (c) 2024 Microsoft Corporation. * FileX Linux/GCC Version 6.4.1 *";
#else
extern CHAR _fx_version_id[];
#endif
Expand Down
2 changes: 1 addition & 1 deletion ports/win32/vs_2019/inc/fx_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ typedef unsigned long long ULONG64;

#ifdef FX_SYSTEM_INIT
CHAR _fx_version_id[] =
"Copyright (c) 2024 Microsoft Corporation. * FileX Win32/Version 6.4.0 *";
"Copyright (c) 2024 Microsoft Corporation. * FileX Win32/Version 6.4.1 *";
#else
extern CHAR _fx_version_id[];
#endif
Expand Down
Loading