diff --git a/NEWS.md b/NEWS.md index a8d2d7c429a..73d8f256764 100644 --- a/NEWS.md +++ b/NEWS.md @@ -11,6 +11,7 @@ v2.0.0, Fri Dec 13, 2024 ## Core +- hmem/cuda: avoid stub loading at runtime - Makefile.am: Keep using libfabric.so.1 as the soname - xpmem: Cleanup xpmem before monitors - Remove redundant windows.h @@ -41,6 +42,8 @@ v2.0.0, Fri Dec 13, 2024 ## EFA +- Skip rx pkt refill under certain threshold +- Fix efa multi recv setopt segfault - Add tracepoints for rma operations - Adjust the location of tracepoint - Implement the rma interface @@ -59,7 +62,6 @@ v2.0.0, Fri Dec 13, 2024 - Update efa_hmem and efa_fork_support log to FI_LOG_CORE - Make efa_hmem_info a global variable - Set max rma order size correctly -- Fix efa multi recv setopt segfault ## Hook @@ -72,18 +74,22 @@ v2.0.0, Fri Dec 13, 2024 - Fix av strncpy - Fix various issues with initial commit +## PSM2 + +- Check return value of asprintf + ## RXM +- Fix rxm multi recv setopt segfault - Replace rxm managed srx with util srx, support FI_PEER - Add rxm support for using a peer CQs and counters - Add FI_AV_USER_ID support - Fix definition of the rxm SAR segment enum -- Fix rxm multi recv setopt segfault ## SHM -- Cleanup op flags - Fix shm multi recv setopt segfault +- Cleanup op flags ## Sockets @@ -106,12 +112,12 @@ v2.0.0, Fri Dec 13, 2024 ## Fabtests +- Add opts.min_multi_recv_size to set opt before enable - Add FI_MORE pytest for fi_recv in zcpy recv mode - Allow tests with FI_MORE flag by using fi_recvmsg - New fabtest fi_flood to test over subscription of resources - test_configs/ofi_rxm/tcp.test: remove cntr RMA testing - Fix compiler warning about unitialized variable -- Add opts.min_multi_recv_size to set opt before enable v2.0.0 beta, Fri Oct 25, 2024 diff --git a/configure.ac b/configure.ac index ccdc3a57dd9..6a6cb97a8ad 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_INIT([libfabric], [2.0.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [2.0.0], [ofiwg@lists.openfabrics.org]) AC_CONFIG_SRCDIR([src/fabric.c]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config) diff --git a/fabtests/configure.ac b/fabtests/configure.ac index 92e8d0c27e6..f2772e2f6f9 100644 --- a/fabtests/configure.ac +++ b/fabtests/configure.ac @@ -5,7 +5,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT([fabtests], [2.0.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([fabtests], [2.0.0], [ofiwg@lists.openfabrics.org]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config) AC_CONFIG_HEADERS(config.h) diff --git a/include/windows/config.h b/include/windows/config.h index c1a50140a11..8e9d4469859 100644 --- a/include/windows/config.h +++ b/include/windows/config.h @@ -256,7 +256,7 @@ #define PACKAGE_TARNAME PACKAGE /* Define to the version of this package. */ -#define PACKAGE_VERSION "2.0.0rc2" +#define PACKAGE_VERSION "2.0.0" /* Define to the full name and version of this package. */ #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION