From 96a6d7c63bdf2c93620dee738a6d410305353677 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Wed, 21 Mar 2012 19:25:56 -0400 Subject: [PATCH] Bump version number to 1.0.9c --- ChangeLog | 8 ++++++-- configure.ac | 2 +- debian/changelog | 14 ++++++++++++++ scripts/mosh | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ddc7c67..68ac652 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,9 +8,13 @@ * Add chaff to datagrams to frustrate statistical analysis of length + * Cosmetic fixes to terminal handling + + * Improved startup script (Anders Kaseorg) + 2012-03-16 Keith Winstein - * Version 1.02 released. + * Version 1.0.2 released. * Uses xterm-256color and supports 256-color escape sequences. @@ -22,7 +26,7 @@ 2012-03-14 Keith Winstein - * Version 1.01 released. + * Version 1.0.1 released. * Roughly 40% less CPU usage. diff --git a/configure.ac b/configure.ac index 0b8785a..2ccc43c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.61]) -AC_INIT([mosh], [1.0.9b], [mosh-devel@mit.edu]) +AC_INIT([mosh], [1.0.9c], [mosh-devel@mit.edu]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc]) diff --git a/debian/changelog b/debian/changelog index 9b02a02..99edada 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mosh (1.0.9c-1) unstable; urgency=low + + * Improved building on Mac OS X (Anders Kaseorg) + + * PRNG (for chaff) now reads from /dev/urandom (Keegan McAllister) + + * Startup script cleanups and fix shell quoting (Anders Kaseorg) + + * Disables core dumps (containing session key) (Keegan McAllister) + + * Improved terminal shutdown and other cosmetic fixes + + -- Keith Winstein Wed, 21 Mar 2012 19:23:41 -0400 + mosh (1.0.9b-1) unstable; urgency=low * More efficient repaint when scrolling top part of window diff --git a/scripts/mosh b/scripts/mosh index f3b2994..dcc5c64 100755 --- a/scripts/mosh +++ b/scripts/mosh @@ -16,7 +16,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -my $MOSH_VERSION = '1.0.9b'; +my $MOSH_VERSION = '1.0.9c'; use warnings; use strict;