From f0199e2695573fa860d42c5c965d2bf05ab8068e Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Sat, 25 Feb 2012 15:16:21 -0500 Subject: [PATCH] Bump version numbers (including Mosh protocol version) This server is now incompatible with older clients and vice versa. --- ChangeLog | 26 ++++++++++++++++++++------ debian/changelog | 16 ++++++++++++++++ src/network/network.h | 2 +- 3 files changed, 37 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index aee5a9b..3ec10e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,18 @@ -2011-02-15 Keith Winstein +2012-02-25 Keith Winstein + + * Version 0.95 released. + + * Make echo acknowledgment reliable to reduce spurious mispredict detections. + + * Require two dropped heartbeats before showing blue bar of lost contact + + * Print newline before MOSH CONNECT string to make more robust if intermediate keys hit + + * Disable ControlMaster in initial SSH connection so proxy is always used + + * Make retransmissions occur at frame rate (vs. every 3 seconds) for limited time after loss + +2012-02-15 Keith Winstein * Version 0.94 released. @@ -9,13 +23,13 @@ * Now builds with g++ or clang (with libstdc++) -2011-02-13 Keith Winstein +2012-02-13 Keith Winstein * Version 0.93 released. * Make utmp entries -2011-02-13 Keith Winstein +2012-02-13 Keith Winstein * Version 0.92 released. @@ -25,7 +39,7 @@ * Better prediction when deleting at line ending -2011-02-09 Keith Winstein +2012-02-09 Keith Winstein * Version 0.91 released. @@ -41,11 +55,11 @@ show server echos, while maintaining prediction overlay in the background in case it is needed. -2011-02-07 Keith Winstein +2012-02-07 Keith Winstein * Version 0.9b released. * Improvements to build system (Anders Kaseorg) -2011-02-06 Keith Winstein +2012-02-06 Keith Winstein * Version 0.9 released. diff --git a/debian/changelog b/debian/changelog index dcaf4c2..2495dd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +mosh (0.95) unstable; urgency=low + + * Version 0.95 released. + + * Make echo acknowledgment reliable to reduce spurious mispredict detections. + + * Require two dropped heartbeats before showing blue bar of lost contact + + * Print newline before MOSH CONNECT string to make more robust if intermediate keys hit + + * Disable ControlMaster in initial SSH connection so proxy is always used + + * Make retransmissions occur at frame rate (vs. every 3 seconds) for limited time after loss + + -- Keith Winstein Sat, 25 Feb 2012 15:15:59 -0500 + mosh (0.94c-1) unstable; urgency=low * Move to protobuf (from protobuf-lite) to make build on Ubuntu 10.04 diff --git a/src/network/network.h b/src/network/network.h index 1a226f8..6b5befe 100644 --- a/src/network/network.h +++ b/src/network/network.h @@ -31,7 +31,7 @@ using namespace Crypto; namespace Network { - static const unsigned int MOSH_PROTOCOL_VERSION = 1; + static const unsigned int MOSH_PROTOCOL_VERSION = 2; /* bumped for echo-ack */ uint64_t timestamp( void ); uint16_t timestamp16( void );