diff --git a/NEWS.md b/NEWS.md index 769376387a7..6b4017b13f0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,17 +5,49 @@ This file contains the main features as well as overviews of specific bug fixes (and other actions) for each version of Libfabric since version 1.0. -v1.11.2, Wed Dec 16, 2020 +v1.11.2, Tue Dec 15, 2020 ========================= ## Core + +- Handle data transfers > 4GB on OS X over tcp sockets +- Fixed spelling and syntax in man pages +- Fix pmem instruction checks + ## EFA + +- Use memory registration for emulated read protocol +- Update send paths to use app memory descriptor if available +- Remove unneeded check for local memory registration +- Do not install fork handler if EFA is not used +- Fix medium message RTM protocol +- Fix memory registration leak in error path +- Fix posting of REQ packets when using shm provider + ## RxM + +- Fix provider initialization when built as a dynamic library + ## SHM + +- Reverts SAR buffer locking patch +- Include correct header file for process_vm_readv/writev syscalls +- Skip atomic fetch processing for non-fetch operations + ## TCP + +- Fix swapping of address and CQ data in RMA inject path + ## Util + +- Fix error code returned for invalid AV flags +- Fix a bug finding the end of a page when the address is aligned + ## Verbs +- Fix build warning in XRC CM log messages +- Fix build warnings in debug macros + v1.11.1, Fri Oct 9, 2020 ======================== diff --git a/configure.ac b/configure.ac index 184369ff6c6..a37d384b651 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_INIT([libfabric], [1.11.2rc1], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [1.11.2], [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 9b1dd28b5e9..9d437b93563 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], [1.11.2rc1], [ofiwg@lists.openfabrics.org]) +AC_INIT([fabtests], [1.11.2], [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 7fd8d438084..221e4d70862 100644 --- a/include/windows/config.h +++ b/include/windows/config.h @@ -165,7 +165,7 @@ #define PACKAGE_TARNAME PACKAGE /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.11.2rc1" +#define PACKAGE_VERSION "1.11.2" /* Define to the full name and version of this package. */ #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION