# HG changeset patch # User Mike Becker # Date 1764693354 -3600 # Node ID b65c05e7be3ce792647c64624195556e0775ba56 # Parent 593e349b6d61aac86d75904d534f2122eb92e4a3 start development of UCX 4 diff -r 593e349b6d61 -r b65c05e7be3c configure --- a/configure Sun Nov 30 16:01:48 2025 +0100 +++ b/configure Tue Dec 02 17:35:54 2025 +0100 @@ -199,15 +199,15 @@ fi if test -z "$VERSION__initialized__"; then VERSION__initialized__=1 - VERSION='3.2.0' + VERSION='4.0.0' fi if test -z "$LIBVERSION__initialized__"; then LIBVERSION__initialized__=1 - LIBVERSION='6.0.0' + LIBVERSION='7.0.0' fi if test -z "$LIBVERSION_MAJOR__initialized__"; then LIBVERSION_MAJOR__initialized__=1 - LIBVERSION_MAJOR='6' + LIBVERSION_MAJOR='7' fi if test -z "$root_dir__initialized__"; then root_dir__initialized__=1 diff -r 593e349b6d61 -r b65c05e7be3c make/project.xml --- a/make/project.xml Sun Nov 30 16:01:48 2025 +0100 +++ b/make/project.xml Tue Dec 02 17:35:54 2025 +0100 @@ -5,9 +5,9 @@ - 3.2.0 - 6.0.0 - 6 + 4.0.0 + 7.0.0 + 7 pwd ${root_dir}/build ${root_dir}/build/docs diff -r 593e349b6d61 -r b65c05e7be3c src/cx/common.h --- a/src/cx/common.h Sun Nov 30 16:01:48 2025 +0100 +++ b/src/cx/common.h Tue Dec 02 17:35:54 2025 +0100 @@ -80,10 +80,10 @@ #define UCX_COMMON_H /** Major UCX version as integer constant. */ -#define UCX_VERSION_MAJOR 3 +#define UCX_VERSION_MAJOR 4 /** Minor UCX version as integer constant. */ -#define UCX_VERSION_MINOR 1 +#define UCX_VERSION_MINOR 0 /** Version constant which ensures to increase monotonically. */ #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR)