From 9b75ab0da7af10817c11663f959e2e8c915e34f0 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Wed, 23 May 2012 06:52:25 -0400 Subject: [PATCH] Have Debian package install ufw and bash_completion. Closes #248. --- ChangeLog | 4 ++++ Makefile.am | 2 +- configure.ac | 2 +- debian/changelog | 8 ++++++++ scripts/mosh | 2 +- 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f438dbf..2662ef8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,10 @@ * Remove use of poll() and OS X poll workaround. (Keegan McAllister) + * Include bash_completion file (ejeffrey) + + * Include UFW firewall profile (Fumihito YOSHIDA) + 2012-04-26 Keith Winstein * Version 1.2 released. diff --git a/Makefile.am b/Makefile.am index ebb997f..87115ab 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,3 @@ ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = src scripts man +SUBDIRS = src scripts man conf EXTRA_DIST = autogen.sh ocb-license.html README.md diff --git a/configure.ac b/configure.ac index 2ed42a7..ad16192 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.2.0.95], [mosh-devel@mit.edu]) +AC_INIT([mosh], [1.2.0.96], [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 bbd07aa..bca25ec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +mosh (1.2.0.96-1) unstable; urgency=low + + * Include bash_completion file (ejeffrey) + + * Include UFW firewall profile (Fumihito YOSHIDA) + + -- Keith Winstein Wed, 23 May 2012 07:05:54 -0400 + mosh (1.2.0.95-1) unstable; urgency=low * Improve performance on lossy links. diff --git a/scripts/mosh b/scripts/mosh index 98d52c8..b4be4fc 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.2.0.95'; +my $MOSH_VERSION = '1.2.0.96'; use warnings; use strict;