Bump version numbers (including Mosh protocol version)

This server is now incompatible with older clients and vice versa.
This commit is contained in:
Keith Winstein
2012-02-25 15:16:21 -05:00
parent 10fdb6abff
commit f0199e2695
3 changed files with 37 additions and 7 deletions
+20 -6
View File
@@ -1,4 +1,18 @@
2011-02-15 Keith Winstein <mosh-devel@mit.edu> 2012-02-25 Keith Winstein <mosh-devel@mit.edu>
* 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 <mosh-devel@mit.edu>
* Version 0.94 released. * Version 0.94 released.
@@ -9,13 +23,13 @@
* Now builds with g++ or clang (with libstdc++) * Now builds with g++ or clang (with libstdc++)
2011-02-13 Keith Winstein <mosh-devel@mit.edu> 2012-02-13 Keith Winstein <mosh-devel@mit.edu>
* Version 0.93 released. * Version 0.93 released.
* Make utmp entries * Make utmp entries
2011-02-13 Keith Winstein <mosh-devel@mit.edu> 2012-02-13 Keith Winstein <mosh-devel@mit.edu>
* Version 0.92 released. * Version 0.92 released.
@@ -25,7 +39,7 @@
* Better prediction when deleting at line ending * Better prediction when deleting at line ending
2011-02-09 Keith Winstein <mosh-devel@mit.edu> 2012-02-09 Keith Winstein <mosh-devel@mit.edu>
* Version 0.91 released. * Version 0.91 released.
@@ -41,11 +55,11 @@
show server echos, while maintaining prediction overlay in the show server echos, while maintaining prediction overlay in the
background in case it is needed. background in case it is needed.
2011-02-07 Keith Winstein <mosh-devel@mit.edu> 2012-02-07 Keith Winstein <mosh-devel@mit.edu>
* Version 0.9b released. * Version 0.9b released.
* Improvements to build system (Anders Kaseorg) * Improvements to build system (Anders Kaseorg)
2011-02-06 Keith Winstein <mosh-devel@mit.edu> 2012-02-06 Keith Winstein <mosh-devel@mit.edu>
* Version 0.9 released. * Version 0.9 released.
+16
View File
@@ -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 <keithw@mit.edu> Sat, 25 Feb 2012 15:15:59 -0500
mosh (0.94c-1) unstable; urgency=low mosh (0.94c-1) unstable; urgency=low
* Move to protobuf (from protobuf-lite) to make build on Ubuntu 10.04 * Move to protobuf (from protobuf-lite) to make build on Ubuntu 10.04
+1 -1
View File
@@ -31,7 +31,7 @@
using namespace Crypto; using namespace Crypto;
namespace Network { 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 ); uint64_t timestamp( void );
uint16_t timestamp16( void ); uint16_t timestamp16( void );