From 9f59c69e40bd75600176cc6dcf09774e53ac14a0 Mon Sep 17 00:00:00 2001 From: John Hood Date: Tue, 29 Nov 2016 22:54:43 -0500 Subject: [PATCH] 1.3.0-rc0-- test build process --- ChangeLog | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 30b4560..4700cb9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,54 @@ +2016-11-28 Keith Winstein + + * Version 1.3.0 released. + + * New features: + * Change website URLs from http://mosh.mit.edu to + https://mosh.org. (Keith Winstein) + * Add --no-ssh-pty option for Dropbear compatibility and + other issues. + * Switch to semantic versioning, making this version 1.3.0 + instead of 1.2.7. + + * Platform support: + * Added nonce-incrementing test. (Keith Winstein) + * Add build-source-package.sh for Debian. (Keith Winstein) + * Fix CPPFLAGS handling possibly causing curses detection + failure. (John Hood) + * Add an Appveyor/Cygwin CI build. + * Improve warning-flags detection for 'make distcheck'. (John Hood) + * Improve robustness of regression tests. (John Hood) + * Support OpenBSD pledge() sandboxing. (John Hood) + * Use backward-compatible name for AES in + AppleCommonCrypto, fixing builds with older OS X SDKs. (John Hood) + * Detect clock_gettime() and CLOCK_MONOTONIC carefully, + fixing OS X 10.12 + Xcode 7.3 builds. (John Hood) + * Support older versions of Perl, back to 5.10, fixing + RHEL 5 builds. (Anders Kaseorg) + * Add a Travis OS X CI and release build. (John Hood) + * Add --help and --version, enabling Automake's + 'std-options' checks. (Anders Kaseorg) + * Add a simple smoke test not requiring tmux, to help + validate builds on older platforms including RHEL 5. (Anders Kaseorg) + * Other minor platform compatibility fixes for Mosh + sources and tests. (John Hood) + + * Bug fixes: + * Work around a pty buffering issue causing failed + connections on FreeBSD 11, or with Dropbear. (John Hood) + * Restore '-p 0' option for OS-selected UDP port bindings. (John Hood) + * Shell hygiene fixes, including better quoting of + pathnames. (Anders Kaseorg) + * Fix typos in project docs. (Jakub Wilk) + * Fix excess newlines on mosh client startup/shutdown. (John Hood) + * Exit gracefully, closing session, on pty write or ioctl failure. (John Hood) + * Fix two bugs that caused mosh-server to consume + excessive CPU in certain circumstances. (John Hood) + * Fix bug that caused text copied from mosh-client to + paste as long lines joined by spaces. (John Hood) + * Documentation improvements. (chenxiaoqino, Ashish Gupta) + * Use getuid(), not geteuid(), for correct getpw* lookups. (John Hood) + 2016-08-10 Keith Winstein * Version 1.2.6 released. diff --git a/configure.ac b/configure.ac index 9a9e1c5..f476e42 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.6], [mosh-devel@mit.edu]) +AC_INIT([mosh], [1.3.0-rc0], [mosh-devel@mit.edu]) AM_INIT_AUTOMAKE([foreign std-options -Wall -Werror]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR([src/frontend/mosh-client.cc])