summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-11-25 00:21:48 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-11-25 00:21:48 +0300
commit503ae1ce6374dc12591d45aaeb36ac744b4fd61f (patch)
tree0f6f33d8aa8ab3c85b21c7f4cc42908cfddbab65
parentNEWS: Update (diff)
downloadguile-ssh-0.10.2.tar.gz
NEWS: Bump version to 0.10.2v0.10.2
* NEWS: Update. Bump version to 0.10.2. * configure.ac: Update. * build-aux/compile: Update.
-rw-r--r--NEWS4
-rwxr-xr-xbuild-aux/compile2
-rw-r--r--configure.ac4
3 files changed, 6 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 1d81912..9035441 100644
--- a/NEWS
+++ b/NEWS
@@ -7,7 +7,7 @@ Copyright (C) Artyom V. Poptsov <poptsov.artyom@gmail.com>
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
-* Unreleased
+* Changes in version 0.10.2 (2016-11-25)
** New procedures
*** New procedure 'channel-send-eof' in (ssh channel)
The procedure allows to send end-of-file (EOF) on a channel. This action
@@ -16,6 +16,8 @@ Copyright (C) Artyom V. Poptsov <poptsov.artyom@gmail.com>
data until EOF (such as 'wc'.)
** Documentation
*** Add procedure index
+** Misc
+*** Fixed several compilation warnings
* Changes in version 0.10.1 (2016-10-09)
** Bugfixes
diff --git a/build-aux/compile b/build-aux/compile
index 4be2a80..c85c8f4 100755
--- a/build-aux/compile
+++ b/build-aux/compile
@@ -1,7 +1,7 @@
#!/bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2016-11-24.20; # UTC
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
diff --git a/configure.ac b/configure.ac
index 1f0e7aa..6767ebf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@ You should have received a copy of the GNU General Public License
along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
]])
-AC_INIT([Guile-SSH], [0.10.1], [poptsov.artyom@gmail.com],
+AC_INIT([Guile-SSH], [0.10.2], [poptsov.artyom@gmail.com],
[guile-ssh],
[https://github.com/artyom-poptsov/guile-ssh])
@@ -84,7 +84,7 @@ if test "x$guilesitedir" = "x"; then
fi
AC_SUBST([guilesitedir])
-LIBGUILE_SSH_INTERFACE="10:1:0"
+LIBGUILE_SSH_INTERFACE="10:2:0"
AC_SUBST(LIBGUILE_SSH_INTERFACE)
GUILE_EFFECTIVE_VERSION=`$GUILE -c '(display (effective-version))'`