Skip to content

Commit

Permalink
configure.ac, NEWS: Bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
artyom-poptsov committed Jul 14, 2013
1 parent 23f4c3a commit 363d21a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2013-07-14 Artyom Poptsov <poptsov.artyom@gmail.com>

* configure.ac, NEWS: Bump version to 0.3.1

Fix several bugs.
* src/threads.c, src/threads.h: Fix a bug with variable
initialization: use constant value to initialize SSH threads
Expand Down
16 changes: 16 additions & 0 deletions NEWS
@@ -1,6 +1,22 @@
Guile-SSH News
--------------

* Changes in version 0.3.1 (2013-07-14)

** Use a simpler method to GC'ing of SSH channels.
The idea is that we don't have to free resources allocated by a
channel during its GC'ing, because these resources will be freed
anyway when the related SSH session is GC'ed. However, to be able
to control allocating of resources more precisely, introduce new
procedure ssh:free-channel! that can be used for freeing resources
allocated by a channel.

** ssh:free-channel!
New procedure.

** Make the library thread-safe.


* Changes in version 0.3 (2013-07-13)

** Improve working with public keys.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -15,7 +15,7 @@
## You should have received a copy of the GNU General Public License
## along with libguile-ssh. If not, see <http://www.gnu.org/licenses/>.

AC_INIT([libguile-ssh], [0.3], [poptsov.artyom@gmail.com])
AC_INIT([libguile-ssh], [0.3.1], [poptsov.artyom@gmail.com])

AM_INIT_AUTOMAKE

Expand All @@ -42,7 +42,7 @@ if test "x$guilesitedir" = "x"; then
fi
AC_SUBST([guilesitedir])

LIBGUILE_SSH_INTERFACE="2:0:0"
LIBGUILE_SSH_INTERFACE="3:0:1"
AC_SUBST(LIBGUILE_SSH_INTERFACE)

# Check for libssh
Expand Down

0 comments on commit 363d21a

Please sign in to comment.