Bump version to 1.2.3

This commit is contained in:
Keith Winstein
2012-10-19 15:24:37 -04:00
parent cd394c61ae
commit 73a2675e8c
5 changed files with 19 additions and 4 deletions
+3 -1
View File
@@ -1,9 +1,10 @@
2012-10-xx Keith Winstein <mosh-devel@mit.edu> 2012-10-19 Keith Winstein <mosh-devel@mit.edu>
* Version 1.2.3 released. * Version 1.2.3 released.
* Security improvements: * Security improvements:
* Use OpenSSL AES implementation * Use OpenSSL AES implementation
* Update AES-OCB implementation (Keegan McAllister)
* Don't let bad server dictate IP (Felix Groebert) * Don't let bad server dictate IP (Felix Groebert)
* New features: * New features:
@@ -18,6 +19,7 @@
* Bug fixes: * Bug fixes:
* Improved performance on systems with expensive time * Improved performance on systems with expensive time
* No longer choke on "ffff::" address for hosts with IPv6 * No longer choke on "ffff::" address for hosts with IPv6
* More conservative MTU and datagram sizing
* Platform support: * Platform support:
* Build on Solaris and IllumOS (Timo Sirainen, Ira Cooper) * Build on Solaris and IllumOS (Timo Sirainen, Ira Cooper)
+1 -1
View File
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ([2.61]) AC_PREREQ([2.61])
AC_INIT([mosh], [1.2.2.95rc1], [mosh-devel@mit.edu]) AC_INIT([mosh], [1.2.3], [mosh-devel@mit.edu])
AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AM_INIT_AUTOMAKE([-Wall -Werror foreign])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc]) AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc])
+10
View File
@@ -1,3 +1,13 @@
mosh (1.2.3-1) unstable; urgency=low
* Version 1.2.3 released.
* Update AES-OCB implementation (Keegan McAllister)
* More conservative MTU and datagram sizing
-- Keith Winstein <keithw@mit.edu> Fri, 19 Oct 2012 15:21:54 -0400
mosh (1.2.2.95rc1-1) unstable; urgency=low mosh (1.2.2.95rc1-1) unstable; urgency=low
* Security improvements: * Security improvements:
+4 -1
View File
@@ -1,5 +1,5 @@
Name: mosh Name: mosh
Version: 1.2 Version: 1.2.3
Release: 2%{?dist} Release: 2%{?dist}
Summary: Mobile shell that supports roaming and intelligent local echo Summary: Mobile shell that supports roaming and intelligent local echo
@@ -50,6 +50,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
%changelog %changelog
* Fri Oct 19 2012 Keith Winstein <mosh-devel@mit.edu> - 1.2.3-1
- Update to mosh 1.2.3.
* Sat Apr 28 2012 Alexander Chernyakhovsky <achernya@mit.edu> - 1.2-2 * Sat Apr 28 2012 Alexander Chernyakhovsky <achernya@mit.edu> - 1.2-2
- Add -g and -O2 CFLAGS - Add -g and -O2 CFLAGS
+1 -1
View File
@@ -30,7 +30,7 @@
# this exception statement from all source files in the program, then # this exception statement from all source files in the program, then
# also delete it here. # also delete it here.
my $MOSH_VERSION = '1.2.2.95rc1'; my $MOSH_VERSION = '1.2.3';
use warnings; use warnings;
use strict; use strict;