-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c34c361
commit 44c4212
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Copyright (C) Artyom V. Poptsov <[email protected]> | |
are permitted in any medium without royalty provided the copyright | ||
notice and this notice are preserved. | ||
|
||
* Unreleased | ||
* Changes in version 0.17.0 (2024-05-01) | ||
** =make-session= now loads config file before setting options | ||
=make-session= would always overwrite the explicitly set options passed by | ||
keywords with the values from the SSH configuration file. That lead to | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce configure. | |
dnl | ||
|
||
define(GUILE_SSH_CONFIGURE_COPYRIGHT, [[ | ||
Copyright (C) 2013-2023 Artyom V. Poptsov <[email protected]> | ||
Copyright (C) 2013-2024 Artyom V. Poptsov <[email protected]> | ||
This file is part of Guile-SSH. | ||
|
@@ -21,13 +21,15 @@ 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.16.4], [[email protected]], | ||
AC_INIT([Guile-SSH], [0.17.0], [[email protected]], | ||
[guile-ssh], | ||
[https://github.com/artyom-poptsov/guile-ssh]) | ||
|
||
AC_COPYRIGHT(GUILE_SSH_CONFIGURE_COPYRIGHT) | ||
|
||
LIBGUILE_SSH_INTERFACE="16:0:2" | ||
dnl See | ||
dnl <https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html> | ||
LIBGUILE_SSH_INTERFACE="17:0:3" | ||
AC_SUBST(LIBGUILE_SSH_INTERFACE) | ||
|
||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|