summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Duncan <lduncan@suse.com>2022-09-26 10:05:39 -0700
committerGitHub <noreply@github.com>2022-09-26 10:05:39 -0700
commit543ba0f15d340b97f30782308cec424a6738fec3 (patch)
treec997c8ed57318036ab0bf75a30851a51a718eea5
parentf633c09a7a2976069b1dfd98d9979349e92c38b5 (diff)
downloadopen-iscsi-543ba0f15d340b97f30782308cec424a6738fec3.tar.gz
Preparing for version 2.1.8. (#370)
-rw-r--r--Changelog42
-rw-r--r--Makefile2
-rw-r--r--meson.build2
3 files changed, 44 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 984361c..a225ee9 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,45 @@
+-> open-iscsi-2.1.7 - open-iscsi-2.1.8
+
+Chris Hofstaedtler (1):
+ make: avoid hard-coding path to sed (#357)
+
+Christian Hesse (1):
+ etc: install system unit with without executable bit (#354)
+
+Eric Mackay (2):
+ Add ability for MGMT IPC to check UID only
+ Use config for iscsistart and iscsiadm fw login
+
+Khem Raj (1):
+ iscsiuio: Use pthread_t for INVALID_THREAD (#363)
+
+Lee Duncan (5):
+ Add a 'distclean' Makefile top-level target
+ Cleanup fwparam makefile (#360)
+ Small bug fixes (#364)
+ Use meson as the main build system (#365)
+ libopeniscsiusr: cleanup recent reallocarray->realloc change (#369)
+
+Max Cheng (1):
+ Added examples in man file for iscsiadm session commands.
+
+Mike Christie (2):
+ iscsid: fix logout pdu send failure handling
+ Update README's error handler/timeout section
+
+Sam James (1):
+ iscsiuio: fix LDADD
+
+TIAN Yuanhao (1):
+ libopeniscsiusr: use realloc instead of reallocarray (#368)
+
+Wenchao Hao (1):
+ iscsiadm: enable specify iface name-value parameters when creating iface
+
+shugaley (1):
+ Fix a possible passing null pointer in usr/iface.c (#356)
+
+
-> open-iscsi-2.1.6 - open-iscsi-2.1.7
Lee Duncan (48):
diff --git a/Makefile b/Makefile
index 7efacc9..09bda07 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@
DESTDIR ?=
# our VERSION String
-ISCSI_VERSION_STR ?= 2.1.7
+ISCSI_VERSION_STR ?= 2.1.8
prefix = /usr
exec_prefix =
diff --git a/meson.build b/meson.build
index e48a916..74e6103 100644
--- a/meson.build
+++ b/meson.build
@@ -4,7 +4,7 @@
project('open-iscsi', 'c',
meson_version: '>= 0.54.0',
- version: '2.1.7',
+ version: '2.1.8',
license: 'LGPL-2.1-or-later',
default_options: [
'c_std=gnu99',