diff --git a/NEWS.md b/NEWS.md index e1d86c31c1c..2e5a7a27420 100644 --- a/NEWS.md +++ b/NEWS.md @@ -7,7 +7,7 @@ version 1.0. New major releases include all fixes from minor releases with earlier release dates. v1.20.0, Fri Nov 17, 2023 -======================== +========================= ## Core @@ -184,6 +184,7 @@ v1.20.0, Fri Nov 17, 2023 ## Util - General bug fixes +- memhooks: Fix a bug when calculating mprotect region - Check the return value of ofi_genlock_init() - Update checks for FI_AV_AUTH_KEY - Define domain primary and secondary caps @@ -209,6 +210,8 @@ v1.20.0, Fri Nov 17, 2023 ## Verbs +- Windows: Check error code from GetPrivateData +- Add missing lock to protect SRX - Add synapseai dmabuf mr support - Bug fix for matching domain name with device name - Windows: Fetch rejected connection data diff --git a/configure.ac b/configure.ac index 7f706f1f36f..7a6d390ed1f 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], [1.20.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [1.20.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 1272b0b0412..504e5051e13 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.20.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([fabtests], [1.20.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 7f0eda57426..132397f1abd 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 "1.20.0rc2" +#define PACKAGE_VERSION "1.20.0" /* Define to the full name and version of this package. */ #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION