Skip to content

Commit f62ffe4

Browse files
author
Sean Hefty
committed
v1.10.1
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
1 parent 2ce250b commit f62ffe4

6 files changed

Lines changed: 36 additions & 4 deletions

File tree

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Hefty <sean.hefty@intel.com>
5555
Holger Hoffstätte <holger@applied-asynchrony.com>
5656
Honggang Li <honli@redhat.com>
5757
Howard Pritchard <howardp@lanl.gov>
58+
Ian Ziemba <ian.ziemba@hpe.com>
5859
Ignacio Hernandez <ignacio.hernandez@intel.com>
5960
Ira Weiny <ira.weiny@intel.com>
6061
Jaime Arteaga <jaime.a.arteaga.molina@intel.com>

NEWS.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,37 @@ bug fixes (and other actions) for each version of Libfabric since
66
version 1.0.
77

88

9+
v1.10.1, Fri May 8, 2020
10+
========================
11+
12+
## Core
13+
14+
- Fixed library version
15+
16+
## EFA
17+
18+
- Allow endpoint to choose shm usage
19+
- Fix handling of REQ packets
20+
- Fix logic writing a Tx completion entry
21+
- Use correct Tx operation flags for msg sends
22+
23+
## Fabtests
24+
25+
- Use pax tar format when creating source packages
26+
27+
## RxD
28+
29+
- Use correct peer address for atomic_inject calls
30+
31+
## SHM
32+
33+
- Fix BSD build failure
34+
35+
## TCP
36+
37+
- Add locking around signaling a wait fd
38+
39+
940
v1.10.0, Fri Apr 24, 2020
1041
=========================
1142

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl
66
dnl Process this file with autoconf to produce a configure script.
77

88
AC_PREREQ([2.60])
9-
AC_INIT([libfabric], [1.10.0], [ofiwg@lists.openfabrics.org])
9+
AC_INIT([libfabric], [1.10.1], [ofiwg@lists.openfabrics.org])
1010
AC_CONFIG_SRCDIR([src/fabric.c])
1111
AC_CONFIG_AUX_DIR(config)
1212
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

Lines changed: 1 addition & 1 deletion
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.10.0], [ofiwg@lists.openfabrics.org])
8+
AC_INIT([fabtests], [1.10.1], [ofiwg@lists.openfabrics.org])
99
AC_CONFIG_AUX_DIR(config)
1010
AC_CONFIG_MACRO_DIR(config)
1111
AC_CONFIG_HEADERS(config.h)

include/rdma/fabric.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ extern "C" {
7878

7979
#define FI_MAJOR_VERSION 1
8080
#define FI_MINOR_VERSION 10
81-
#define FI_REVISION_VERSION 0
81+
#define FI_REVISION_VERSION 1
8282

8383
enum {
8484
FI_PATH_MAX = 256,

include/windows/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
#define PACKAGE_TARNAME PACKAGE
166166

167167
/* Define to the version of this package. */
168-
#define PACKAGE_VERSION "1.10.0"
168+
#define PACKAGE_VERSION "1.10.1"
169169

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

0 commit comments

Comments
 (0)