Bump version for 1.2 release pre-candidate

This commit is contained in:
Keith Winstein
2012-04-16 21:13:37 -04:00
parent a289a2319e
commit ac2875141b
3 changed files with 38 additions and 2 deletions
+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.1.3a], [mosh-devel@mit.edu]) AC_INIT([mosh], [1.1.94], [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])
+36
View File
@@ -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 mosh (1.1.3a-1) unstable; urgency=low
* Support 16-color escape sequences (Anders Kaseorg) * Support 16-color escape sequences (Anders Kaseorg)
+1 -1
View File
@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
my $MOSH_VERSION = '1.1.3a'; my $MOSH_VERSION = '1.1.94';
use warnings; use warnings;
use strict; use strict;