Skip to content

Commit

Permalink
New version 1.15.0
Browse files Browse the repository at this point in the history
- Replace some u_int32_t with uint32_t
- Portability fixes to iscsi-perf
- Improved documentation for the tests in README
- Add/fix support for setting task/pdu timeouts and add unit tests for it.
- Add multipath helpers for the test suite and add a simple multipath test
- Skip sending TUR during reconnect, since it can cause the connection to
-   hang.

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
  • Loading branch information
sahlberg committed Jun 21, 2015
1 parent ed17e17 commit 96c00b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/iscsi.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct iscsi_context;
struct sockaddr;

/* API VERSION */
#define LIBISCSI_API_VERSION (20150510)
#define LIBISCSI_API_VERSION (20150621)

/* FEATURES */
#define LIBISCSI_FEATURE_IOVECTOR (1)
Expand Down
2 changes: 1 addition & 1 deletion lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ libiscsi_la_SOURCES += md5.c
endif

SOCURRENT=6
SOREVISON=0
SOREVISON=1
SOAGE=2
libiscsi_la_LDFLAGS = \
-version-info $(SOCURRENT):$(SOREVISON):$(SOAGE) -bindir $(bindir) \
Expand Down
10 changes: 9 additions & 1 deletion packaging/RPM/libiscsi.spec.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: libiscsi
Summary: iSCSI client library
Version: 1.14.0
Version: 1.15.0
Release: 1GITHASH%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
Expand Down Expand Up @@ -110,6 +110,14 @@ Test tool for iSCSI/SCSI targets


%changelog
* Sun Jun 21 2015 : 1.0.15
- Replace some u_int32_t with uint32_t
- Portability fixes to iscsi-perf
- Improved documentation for the tests in README
- Add/fix support for setting task/pdu timeouts and add unit tests for it.
- Add multipath helpers for the test suite and add a simple multipath test
- Skip sending TUR during reconnect, since it can cause the connection to
hang.
* Sun May 10 2015 : 1.0.14
- Add support to use /dev/* nodes instead of just iscsi devices.
- Create a dedicated test for the FUA/DPO flags
Expand Down

0 comments on commit 96c00b2

Please sign in to comment.