From cc46579db7da59dc99c0670fc2fbf0107a50172c Mon Sep 17 00:00:00 2001 From: John Safranek Date: Mon, 22 Apr 2019 10:18:28 -0700 Subject: [PATCH] Bump Version --- README | 39 ++++++++++++++++++--------------------- README.md | 31 ++++++++++++++----------------- configure.ac | 6 +++--- 3 files changed, 35 insertions(+), 41 deletions(-) diff --git a/README b/README index c9cd307..fd780ab 100644 --- a/README +++ b/README @@ -186,8 +186,8 @@ allows the user to set up an encrypted connection for managing file systems. To compile wolfSSH with SFTP support, use the `--enable-sftp` build option or define `WOLFSSH_SFTP`: -$ ./configure --enable-sftp -$ make + $ ./configure --enable-sftp + $ make For full API usage and implementation details, please see the wolfSSH User Manual. @@ -195,31 +195,28 @@ Manual. The SFTP client created is located in the directory examples/sftpclient/ and the server is ran using the same echoserver as with wolfSSH. -src/wolfssh$ ./examples/sftpclient/wolfsftp + src/wolfssh$ ./examples/sftpclient/wolfsftp A full list of supported commands can be seen with typeing "help" after a connection. -``` -wolfSSH sftp> help + wolfSSH sftp> help - -Commands : -cd change directory -chmod change mode -get pulls file(s) from server -ls list current directory -mkdir creates new directory on server -put push file(s) to server -pwd list current path -quit exit -rename renames remote file -reget resume pulling file -reput resume pushing file - interrupt get/put cmd -``` + Commands : + cd change directory + chmod change mode + get pulls file(s) from server + ls list current directory + mkdir creates new directory on server + put push file(s) to server + pwd list current path + quit exit + rename renames remote file + reget resume pulling file + reput resume pushing file + interrupt get/put cmd An example of connecting to another system would be -src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111 + src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111 diff --git a/README.md b/README.md index 910153b..fd780ab 100644 --- a/README.md +++ b/README.md @@ -201,24 +201,21 @@ A full list of supported commands can be seen with typeing "help" after a connection. -``` -wolfSSH sftp> help + wolfSSH sftp> help - -Commands : -cd change directory -chmod change mode -get pulls file(s) from server -ls list current directory -mkdir creates new directory on server -put push file(s) to server -pwd list current path -quit exit -rename renames remote file -reget resume pulling file -reput resume pushing file - interrupt get/put cmd -``` + Commands : + cd change directory + chmod change mode + get pulls file(s) from server + ls list current directory + mkdir creates new directory on server + put push file(s) to server + pwd list current path + quit exit + rename renames remote file + reget resume pulling file + reput resume pushing file + interrupt get/put cmd An example of connecting to another system would be diff --git a/configure.ac b/configure.ac index 891efd4..7f428dc 100644 --- a/configure.ac +++ b/configure.ac @@ -2,14 +2,14 @@ # Copyright (C) 2014-2018 wolfSSL Inc. # All right reserved. -AC_COPYRIGHT([Copyright (C) 2014-2018 wolfSSL Inc.]) +AC_COPYRIGHT([Copyright (C) 2014-2019 wolfSSL Inc.]) AC_INIT([wolfssh],[1.3.1],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com]) AC_PREREQ([2.63]) AC_CONFIG_AUX_DIR([build-aux]) : ${CFLAGS=""} # Test ar for the "U" option. Should be checked before the libtool macros. -xxx_ar_flags=$((ar --help) 2>&1) +xxx_ar_flags=$(ar --help 2>&1) AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}]) AC_CANONICAL_HOST @@ -20,7 +20,7 @@ AC_ARG_PROGRAM AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([src/config.h]) -WOLFSSH_LIBRARY_VERSION=6:0:1 +WOLFSSH_LIBRARY_VERSION=7:0:2 # | | | # +------+ | +---+ # | | |