diff --git a/include/iscsi.h b/include/iscsi.h index 7aa2a44..c1a7755 100644 --- a/include/iscsi.h +++ b/include/iscsi.h @@ -34,7 +34,7 @@ struct iscsi_context; struct sockaddr; /* API VERSION */ -#define LIBISCSI_API_VERSION (20140713) +#define LIBISCSI_API_VERSION (20150510) /* FEATURES */ #define LIBISCSI_FEATURE_IOVECTOR (1) diff --git a/lib/Makefile.am b/lib/Makefile.am index e7aeb75..25db36f 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -10,9 +10,9 @@ if !HAVE_LIBGCRYPT libiscsi_la_SOURCES += md5.c endif -SOCURRENT=5 +SOCURRENT=6 SOREVISON=0 -SOAGE=1 +SOAGE=2 libiscsi_la_LDFLAGS = \ -version-info $(SOCURRENT):$(SOREVISON):$(SOAGE) -bindir $(bindir) \ -no-undefined -export-symbols ${srcdir}/libiscsi.syms diff --git a/packaging/RPM/libiscsi.spec.in b/packaging/RPM/libiscsi.spec.in index fda379a..9128f1d 100644 --- a/packaging/RPM/libiscsi.spec.in +++ b/packaging/RPM/libiscsi.spec.in @@ -1,6 +1,6 @@ Name: libiscsi Summary: iSCSI client library -Version: 1.13.0 +Version: 1.14.0 Release: 1GITHASH%{?dist} License: LGPLv2+ Group: System Environment/Libraries @@ -110,6 +110,24 @@ Test tool for iSCSI/SCSI targets %changelog +* 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 + - Allow reusing the context after disconnect + - Fix non-randomness in rand_key() + - Add iscsi-perf tool + - Fix length bug when sending unsolicited data in iscsi_command + - Reqrite the reconnect logic to begome fully async + - Fix wrong checks for username in CHAP + - Support Bidirectional CHAP + - Improve handling of IMMEDIATE bit + - Cmdsn, statsn fixes + - iscsi_which_events can return 0, which means that there are no events right + now but try again in a second or so. + - Ignore any ASYNC EVENTS we receive since we can not yet pass them back to + the application. + - Add initial make test support + - Various minor fixes to libiscsi and the test suite * Sun Dec 21 2014 : 1.13.0 - Fix UNMAP tests - Build updates