summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Winstein <keithw@mit.edu>2012-04-22 23:29:02 -0400
committerKeith Winstein <keithw@mit.edu>2012-04-22 23:29:02 -0400
commitcaba4d067e45098e92689db441b4510652279b48 (patch)
treeb15d854bc102afe8f6255f5f7884996678c4943e
parente7d2bcf642322a2faf8e091ecee46256418ed614 (diff)
Bump version to 1.1.95 (release candidate)
-rw-r--r--ChangeLog28
-rw-r--r--NEWS5
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog6
-rw-r--r--fedora/mosh.spec4
-rwxr-xr-xscripts/mosh2
6 files changed, 45 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bed1909..25d1e80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,31 @@
+2012-04-99 Keith Winstein <mosh-devel@mit.edu>
+
+ * Version 1.2 released.
+
+ * Remove Boost as a dependency (Keegan McAllister)
+
+ * Remove skalibs as a dependency on Debian/Ubuntu (Keegan McAllister)
+
+ * Now passes locale-related env vars over the connection
+
+ * Fix startup script to no longer hang on some Macs (Jay Freeman)
+
+ * Fix terminal emulation and argument parsing on FreeBSD
+
+ * Now prints message of the day
+
+ * Add support for FreeBSD, Cygwin, RHEL/CentOS 5, OS X 10.5 on PPC.
+
+ * Use faster gzip implementation (Anders Kaseorg)
+
+ * Use binary hardening flags where available (Keegan McAllister)
+
+ * Responsiveness and CPU-usage improvements
+
+ * Several terminal-emulation bug fixes
+
+ * More verbose and helpful diagnostics. Server now has -v flag.
+
2012-04-03 Keith Winstein <mosh-devel@mit.edu>
* Version 1.1.3 released.
diff --git a/NEWS b/NEWS
index 77bdc82..7a3068b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+2012-03-22
+----------
+
+* Version 1.1 released
+
2012-03-12
----------
diff --git a/configure.ac b/configure.ac
index 138d71f..4f0c4cc 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.94e], [mosh-devel@mit.edu])
+AC_INIT([mosh], [1.1.95], [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 f0564a7..3ba3bee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mosh (1.1.95-1) unstable; urgency=low
+
+ * Eliminate PPC32 dependence on posix_memalign()
+
+ -- Keith Winstein <keithw@mit.edu> Sun, 22 Apr 2012 23:18:13 -0400
+
mosh (1.1.94e-1) unstable; urgency=low
* Improve responsiveness on fast links
diff --git a/fedora/mosh.spec b/fedora/mosh.spec
index 9b8a48d..a8b4480 100644
--- a/fedora/mosh.spec
+++ b/fedora/mosh.spec
@@ -11,6 +11,7 @@ Source0: https://github.com/downloads/keithw/mosh/mosh-%{version}.tar.gz
BuildRequires: protobuf-compiler
BuildRequires: protobuf-devel
BuildRequires: libutempter-devel
+BuildRequires: zlib-devel
BuildRequires: ncurses-devel
Requires: openssh-clients
Requires: perl-IO-Tty
@@ -43,6 +44,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
%changelog
+* Sun Apr 22 2012 Keith Winstein <mosh-devel@mit.edu> - 1.2-1
+- Update to mosh 1.2.
+
* Wed Apr 3 2012 Keith Winstein <mosh-devel@mit.edu> - 1.1.3-1
- Update to mosh 1.1.3.
diff --git a/scripts/mosh b/scripts/mosh
index fe712b5..68b25a7 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 <http://www.gnu.org/licenses/>.
-my $MOSH_VERSION = '1.1.94e';
+my $MOSH_VERSION = '1.1.95';
use warnings;
use strict;