Bump version to 1.1.95 (release candidate)

This commit is contained in:
Keith Winstein
2012-04-22 23:29:02 -04:00
parent e7d2bcf642
commit caba4d067e
6 changed files with 45 additions and 2 deletions
+28
View File
@@ -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.
+5
View File
@@ -1,3 +1,8 @@
2012-03-22
----------
* Version 1.1 released
2012-03-12
----------
+1 -1
View File
@@ -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])
+6
View File
@@ -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
+4
View File
@@ -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.
+1 -1
View File
@@ -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;