Skip to content

Commit 393dd23

Browse files
author
Stefan Raspl
committed
Release: Prepare v1.6.0
Signed-off-by: Stefan Raspl <raspl@linux.ibm.com>
1 parent 0a41e8c commit 393dd23

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# http://www.eclipse.org/legal/epl-v10.html
1010
#
1111

12-
SMC_TOOLS_RELEASE = 1.5.99
12+
SMC_TOOLS_RELEASE = 1.6.0
1313
VER_MAJOR = $(shell echo $(SMC_TOOLS_RELEASE) | cut -d '.' -f 1)
1414

1515
ARCHTYPE = $(shell uname -m)

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ SMC Tools
33

44
Utilities for use with `AF_SMC` sockets.
55

6-
This package consists of the tools:
6+
This package consists of the following tools:
77

88
- `libsmc-preload.so` : preload library.
9-
- `smc_run` : preload library environment setup script.
9+
- `smc` : List linkgroups, links, devices, and more
10+
- `smc_chk` : SMC support diagnostics
1011
- `smc_pnet` : C program for PNET Table handling
12+
- `smc_rnics` : List available RDMA NICs
13+
- `smc_run` : preload library environment setup script.
1114
- `smcss` : C program for displaying the information about active
1215
SMC sockets.
13-
- `smc_rnics` : List available RDMA NICs
14-
- `smc` : List linkgroups, links and devices.
1516

1617
The preload shared library `libsmc-preload.so` provides mapping of TCP socket
1718
operations to SMC sockets.
@@ -38,12 +39,12 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
3839
Release History:
3940
================
4041

41-
* __v1.5.99 (tbd)__
42+
* __v1.6.0 (2021-07-01)__
4243

4344
Changes:
4445
- `smcd`/`smcr`: Add new command `stats`
4546
- `smc_rnics`: Recognize unknown Mellanox cards
46-
- `smc_run': Add various command-line switches
47+
- `smc_run`: Add various command-line switches
4748

4849
Bug fixes:
4950
- `smc_chk`: Remove 'EXPERIMENTAL' flag

smc_chk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Copyright IBM Corp. 2021
44

5-
VERSION="1.5.99";
5+
VERSION="1.6.0";
66

77

88
function usage() {

smc_dbg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Copyright IBM Corp. 2019
44

5-
VERSION="1.5.99";
5+
VERSION="1.6.0";
66

77

88
function usage() {

smc_rnics

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Copyright IBM Corp. 2018, 2020
44

5-
VERSION="1.5.99";
5+
VERSION="1.6.0";
66

77

88
function usage() {

smctools_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define STRINGIFY_1(x) #x
2020
#define STRINGIFY(x) STRINGIFY_1(x)
2121

22-
#define RELEASE_STRING "1.5.99"
22+
#define RELEASE_STRING "1.6.0"
2323

2424
#define PF_SMC 43
2525

0 commit comments

Comments
 (0)