Bump version to 1.2.4.95rc2 (1.2.5 release candidate.)
Signed-off-by: John Hood <cgull@glup.org>
This commit is contained in:
@@ -3,26 +3,36 @@
|
|||||||
* Version 1.2.5 released.
|
* Version 1.2.5 released.
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
* Bind to a specific IP address with --bind-server. (Philipp Haselwarter)
|
* Bind to a specific IP address with --bind-server. (Philipp
|
||||||
* MOSH_ESCAPE_KEY configures escape character. (Timo J. Rinne)
|
Haselwarter)
|
||||||
|
* MOSH_ESCAPE_KEY configures escape character. (Timo
|
||||||
|
J. Rinne)
|
||||||
* Support non-roaming IPv6. (Anders Kaseorg)
|
* Support non-roaming IPv6. (Anders Kaseorg)
|
||||||
* Implement XTerm mouse mode. (Barosl LEE, Andrew Chin, Louis Kruger)
|
* Implement XTerm mouse mode. (Barosl LEE, Andrew Chin,
|
||||||
* Report Git revision along with version if available. (John Hood)
|
Louis Kruger)
|
||||||
|
* Report Git revision along with version if available.
|
||||||
|
(John Hood)
|
||||||
|
|
||||||
* Platform support:
|
* Platform support:
|
||||||
* Add pselect() emulation. (Jérémie Courrèges-Anglas)
|
* Add pselect() emulation. (Jérémie Courrèges-Anglas)
|
||||||
* OpenBSD, OS X: Fix be64toh-related issues. (Jérémie Courrèges-Anglas)
|
* OpenBSD, OS X: Fix be64toh-related issues. (Jérémie
|
||||||
|
Courrèges-Anglas)
|
||||||
* ARM Neon: fix gcc4.8 compiling problem(Pasi Sjöholm)
|
* ARM Neon: fix gcc4.8 compiling problem(Pasi Sjöholm)
|
||||||
* NaCl: Conditionally rename main to mosh_main. (Richard Woodbury)
|
* NaCl: Conditionally rename main to mosh_main. (Richard
|
||||||
|
Woodbury)
|
||||||
* FreeBSD: Token pasting, forkpty(), ARM fixes. (John Hood)
|
* FreeBSD: Token pasting, forkpty(), ARM fixes. (John Hood)
|
||||||
* AIX: Implement CTTY grabbing when TIOCSCTTY is missing
|
* AIX: Implement CTTY grabbing when TIOCSCTTY is missing
|
||||||
(Anton Lundin)
|
(Anton Lundin)
|
||||||
|
* OS X: Broaden build support to cover OS X 10.5 through
|
||||||
|
10.10. (John Hood)
|
||||||
|
* Debian: Improve bash-completion install and
|
||||||
|
functionality. (Suggested by Gabriel Filion, John Hood)
|
||||||
|
|
||||||
* Bug fixes:
|
* Bug fixes:
|
||||||
* Automake/autoconf workarounds. (Anders Kaseorg)
|
* Automake/autoconf workarounds. (Anders Kaseorg)
|
||||||
* mosh-server: Allow startup without PTY. (Keith Winstein)
|
* mosh-server: Allow startup without PTY. (Keith Winstein)
|
||||||
* network.cc: Properly close old fd on Socket assignment operator.
|
* network.cc: Properly close old fd on Socket assignment
|
||||||
(Thanks to Igor Bukanov)
|
operator. (Thanks to Igor Bukanov)
|
||||||
* mosh-server: Allow startup with zero-window-size PTY.
|
* mosh-server: Allow startup with zero-window-size PTY.
|
||||||
(Igor Bukanov)
|
(Igor Bukanov)
|
||||||
* AddrInfo: Fix error message generation when node == NULL
|
* AddrInfo: Fix error message generation when node == NULL
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
# Process this file with autoconf to produce a configure script.
|
# Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ([2.61])
|
AC_PREREQ([2.61])
|
||||||
AC_INIT([mosh], [1.2.4.95rc1], [mosh-devel@mit.edu])
|
AC_INIT([mosh], [1.2.4.95rc2], [mosh-devel@mit.edu])
|
||||||
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
|
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
|
||||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||||
AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc])
|
AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc])
|
||||||
|
|||||||
Vendored
+19
-9
@@ -1,28 +1,38 @@
|
|||||||
mosh (1.2.4.95rc1-1) unstable; urgency=low
|
mosh (1.2.4.95rc2-1) unstable; urgency=low
|
||||||
|
|
||||||
* Version 1.2.5 release candidate.
|
* Version 1.2.5 release candidate.
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
* Bind to a specific IP address with --bind-server. (Philipp Haselwarter)
|
* Bind to a specific IP address with --bind-server. (Philipp
|
||||||
* MOSH_ESCAPE_KEY configures escape character. (Timo J. Rinne)
|
Haselwarter)
|
||||||
|
* MOSH_ESCAPE_KEY configures escape character. (Timo
|
||||||
|
J. Rinne)
|
||||||
* Support non-roaming IPv6. (Anders Kaseorg)
|
* Support non-roaming IPv6. (Anders Kaseorg)
|
||||||
* Implement XTerm mouse mode. (Barosl LEE, Andrew Chin, Louis Kruger)
|
* Implement XTerm mouse mode. (Barosl LEE, Andrew Chin,
|
||||||
* Report Git revision along with version if available. (John Hood)
|
Louis Kruger)
|
||||||
|
* Report Git revision along with version if available.
|
||||||
|
(John Hood)
|
||||||
|
|
||||||
* Platform support:
|
* Platform support:
|
||||||
* Add pselect() emulation. (Jérémie Courrèges-Anglas)
|
* Add pselect() emulation. (Jérémie Courrèges-Anglas)
|
||||||
* OpenBSD, OS X: Fix be64toh-related issues. (Jérémie Courrèges-Anglas)
|
* OpenBSD, OS X: Fix be64toh-related issues. (Jérémie
|
||||||
|
Courrèges-Anglas)
|
||||||
* ARM Neon: fix gcc4.8 compiling problem(Pasi Sjöholm)
|
* ARM Neon: fix gcc4.8 compiling problem(Pasi Sjöholm)
|
||||||
* NaCl: Conditionally rename main to mosh_main. (Richard Woodbury)
|
* NaCl: Conditionally rename main to mosh_main. (Richard
|
||||||
|
Woodbury)
|
||||||
* FreeBSD: Token pasting, forkpty(), ARM fixes. (John Hood)
|
* FreeBSD: Token pasting, forkpty(), ARM fixes. (John Hood)
|
||||||
* AIX: Implement CTTY grabbing when TIOCSCTTY is missing
|
* AIX: Implement CTTY grabbing when TIOCSCTTY is missing
|
||||||
(Anton Lundin)
|
(Anton Lundin)
|
||||||
|
* OS X: Broaden build support to cover OS X 10.5 through
|
||||||
|
10.10. (John Hood)
|
||||||
|
* Debian: Improve bash-completion install and
|
||||||
|
functionality. (Suggested by Gabriel Filion, John Hood)
|
||||||
|
|
||||||
* Bug fixes:
|
* Bug fixes:
|
||||||
* Automake/autoconf workarounds. (Anders Kaseorg)
|
* Automake/autoconf workarounds. (Anders Kaseorg)
|
||||||
* mosh-server: Allow startup without PTY. (Keith Winstein)
|
* mosh-server: Allow startup without PTY. (Keith Winstein)
|
||||||
* network.cc: Properly close old fd on Socket assignment operator.
|
* network.cc: Properly close old fd on Socket assignment
|
||||||
(Thanks to Igor Bukanov)
|
operator. (Thanks to Igor Bukanov)
|
||||||
* mosh-server: Allow startup with zero-window-size PTY.
|
* mosh-server: Allow startup with zero-window-size PTY.
|
||||||
(Igor Bukanov)
|
(Igor Bukanov)
|
||||||
* AddrInfo: Fix error message generation when node == NULL
|
* AddrInfo: Fix error message generation when node == NULL
|
||||||
|
|||||||
+4
-1
@@ -1,5 +1,5 @@
|
|||||||
Name: mosh
|
Name: mosh
|
||||||
Version: 1.2.4.95rc1
|
Version: 1.2.4.95rc2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Mobile shell that supports roaming and intelligent local echo
|
Summary: Mobile shell that supports roaming and intelligent local echo
|
||||||
|
|
||||||
@@ -52,6 +52,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jun 26 2015 John Hood <cgull@glup.org> - 1.2.4.95rc2-1
|
||||||
|
- Update to mosh 1.2.4.95rc2
|
||||||
|
|
||||||
* Mon Jun 08 2015 John Hood <cgull@glup.org> - 1.2.4.95rc1-1
|
* Mon Jun 08 2015 John Hood <cgull@glup.org> - 1.2.4.95rc1-1
|
||||||
- Update to mosh 1.2.4.95rc1
|
- Update to mosh 1.2.4.95rc1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user