From ac2875141b10f00f1cdaea96493eac481e706a7d Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Mon, 16 Apr 2012 21:13:37 -0400 Subject: [PATCH] Bump version for 1.2 release pre-candidate --- configure.ac | 2 +- debian/changelog | 36 ++++++++++++++++++++++++++++++++++++ scripts/mosh | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d67d463..f1195cf 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.1.3a], [mosh-devel@mit.edu]) +AC_INIT([mosh], [1.1.94], [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 5893cb7..dc4a565 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,39 @@ +mosh (1.1.94-1) unstable; urgency=low + + * Release pre-candidate for mosh 1.2 + + * Remove Boost as a dependency (Keegan McAllister) + + * More friendly error messages in some common cases + + * Now passes locale-related env vars over the connection + + * Remove skalibs as a depenency on Debian/Ubuntu (Keegan McAllister) + + * Fix startup script to no longer hang on some Macs (Jay Freeman) + + * Fix argument parsing on FreeBSD (Daniel O'Connor) + + * Use binary hardening flags where available (Keegan McAllister) + + * Several improvements to terminal emulation correctness + + * Now prints message of the day (motd) + + * Allows core dumps of subsidiary applications if desired + + * Cleaner execution of subsidiary shell (Jay Freeman) + + * Fix leaking utmp entries (Ed Schouten) + + * Add support for Cygwin (Joshua Pollack) + + * Add support for RHEL/CentOS 5 (Reini Urban) + + * Use less CPU when server's network is down + + * Disable posterization of 256colors to 8 ANSI colors + mosh (1.1.3a-1) unstable; urgency=low * Support 16-color escape sequences (Anders Kaseorg) diff --git a/scripts/mosh b/scripts/mosh index fd910eb..53af892 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.1.3a'; +my $MOSH_VERSION = '1.1.94'; use warnings; use strict;