Skip to content

Commit f67fad2

Browse files
committed
v1.21.0
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent bbe793b commit f67fad2

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

NEWS.md

+35
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,41 @@ Removed.
198198
- Add dmabuf ops for cuda.
199199

200200

201+
v1.20.2, Fri March 29, 2024
202+
========================
203+
204+
## Core
205+
206+
- configure: Do not check for xpmem if disabled
207+
- man page fixes
208+
209+
## EFA
210+
211+
- Remove unnecessary check in rdma write.
212+
- Enable runting for neuron with a different runt size
213+
- Handle rx pkts error without ope
214+
- Distinguish unresponsive receiver errors
215+
- Add `efa_show_help()`
216+
- Refactor error code definitions
217+
- Remove error message assertions from CQ unit tests
218+
- Refactor `efa_strerror()`
219+
- Doxyfile: Configure tabs to 8 spaces
220+
- Rename Doxyfile
221+
222+
## SHM
223+
224+
- Revert the smr_region fields adjustment
225+
- Don't close dmabuf-fd when a request is done
226+
- Mark send as completed when a message is discarded
227+
- Print shm name and error code when failed to open
228+
- Close device_fds for connected peers when the EP is closed
229+
230+
## Fabtests
231+
232+
- Replace strtok with strtok_r
233+
- Add new exclude file for io_uring tests
234+
235+
201236
v1.20.1, Mon Jan 22, 2024
202237
=========================
203238

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dnl
99
dnl Process this file with autoconf to produce a configure script.
1010

1111
AC_PREREQ([2.60])
12-
AC_INIT([libfabric], [1.21.0rc2], [[email protected]])
12+
AC_INIT([libfabric], [1.21.0], [[email protected]])
1313
AC_CONFIG_SRCDIR([src/fabric.c])
1414
AC_CONFIG_AUX_DIR(config)
1515
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl
55
dnl Process this file with autoconf to produce a configure script.
66

77
AC_PREREQ(2.57)
8-
AC_INIT([fabtests], [1.21.0rc2], [[email protected]])
8+
AC_INIT([fabtests], [1.21.0], [[email protected]])
99
AC_CONFIG_AUX_DIR(config)
1010
AC_CONFIG_MACRO_DIR(config)
1111
AC_CONFIG_HEADERS(config.h)

include/windows/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
#define PACKAGE_TARNAME PACKAGE
257257

258258
/* Define to the version of this package. */
259-
#define PACKAGE_VERSION "1.21.0rc2"
259+
#define PACKAGE_VERSION "1.21.0"
260260

261261
/* Define to the full name and version of this package. */
262262
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION

0 commit comments

Comments
 (0)