diff --git a/AUTHORS b/AUTHORS index b704ddcf931..00a4bd33c76 100644 --- a/AUTHORS +++ b/AUTHORS @@ -131,6 +131,7 @@ Nikola Dancejic Oblomov, Sergey Oblomov, Sergey OFIWG Bot +Olivier Serres orbea Paolo Inaudi patrickbueb <70724661+patrickbueb@users.noreply.github.com> diff --git a/NEWS.md b/NEWS.md index 420264f0aba..4e8175b830d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -22,6 +22,15 @@ v1.13.2, Fri Oct 15, 2021 ## EFA +- Limit memcpy in packet processing to only copy valid data +- Removed maximum wait time sending packet to avoid silent drops +- Fix unconditionally growing buffer pools that should not grow +- Handle possible large backlog of unexpected messages via SHM +- Update Tx counter for inject operations +- Allow in flight sends to finish when closing endpoint +- Fix handing of prefix size when receiving data +- Removed unnecessary data copy + ## SHM - Fix possible sigbus error @@ -29,6 +38,7 @@ v1.13.2, Fri Oct 15, 2021 ## TCP +- Fix reporting RMA write CQ data - Fix RMA read request error completion handling - Avoid possible use after free in reject path - Remove restriction where EQs and CQs may not share wait sets @@ -51,6 +61,7 @@ v1.13.2, Fri Oct 15, 2021 ## Util +- Fix AV set to use non-zero starting address - Fix setting of CQ completion flags ## Verbs diff --git a/configure.ac b/configure.ac index 0fe3638d9a8..3ec567ea8b6 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.13.2rc1], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [1.13.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 7c4e4990376..a4c4525f5c8 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.13.2rc1], [ofiwg@lists.openfabrics.org]) +AC_INIT([fabtests], [1.13.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 de798455ebb..7999442336c 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.13.2rc1" +#define PACKAGE_VERSION "1.13.2" /* Define to the full name and version of this package. */ #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION