summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/release/2.0.0
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2015-04-10 20:41:00 +0200
committerCorinna Vinschen <corinna@vinschen.de>2015-04-23 21:58:33 +0200
commit5778304f168a0ce4d1b6cd048a5e499436f0f6d0 (patch)
treed21af9a6a94d91f40082dcc04f8dfcbca31a9def /winsup/cygwin/release/2.0.0
parentbccc0e83e82af2e74e4a813bf551cad0b2305814 (diff)
downloadcygnal-5778304f168a0ce4d1b6cd048a5e499436f0f6d0.tar.gz
cygnal-5778304f168a0ce4d1b6cd048a5e499436f0f6d0.tar.bz2
cygnal-5778304f168a0ce4d1b6cd048a5e499436f0f6d0.zip
Bump Cygwin version to 2.0.0.
* include/cygwin/version.h (CYGWIN_VERSION_DLL_MAJOR): Bump to 2000. (CYGWIN_VERSION_DLL_MINOR): Set to 0. * new-features.xml (ov-new2.0): Rename from ov-new1.7.36 and change version number to 2.0. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/release/2.0.0')
-rw-r--r--winsup/cygwin/release/2.0.042
1 files changed, 42 insertions, 0 deletions
diff --git a/winsup/cygwin/release/2.0.0 b/winsup/cygwin/release/2.0.0
new file mode 100644
index 000000000..f01e497fe
--- /dev/null
+++ b/winsup/cygwin/release/2.0.0
@@ -0,0 +1,42 @@
+What's new:
+-----------
+
+- basename(3) now comes in two flavors, POSIX and GNU. The POSIX version is
+ the default. You get the GNU version after
+
+ #define _GNU_SOURCE
+ #include <string.h>
+
+
+What changed:
+-------------
+
+- The maximum number of PTYs has been raised from 64 to 128.
+
+
+Bug Fixes
+---------
+
+- Fix potential hang in pseudo ttys when generating ECHO output while the slave
+ is flooding the pty with output.
+ Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00019.html
+
+- Fix potential premature SIGHUP in pty code.
+ Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00070.html
+
+- Fix a name change from symlink to target name in calls to execvp, system, etc.
+ Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00270.html
+
+- Fix internal error in pty -ONLCR handling. Fix timing bug in pty OPOST
+ handling.
+ Addresses: https://cygwin.com/ml/cygwin/2015-02/msg00929.html
+
+- Avoid creating passwd and group records from fully qualified Windows
+ account names (domain\name, name@domain).
+ Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00528.html
+
+- Avoid potential crash at startup or in getgroups(2).
+ Addresses: https://cygwin.com/ml/cygwin/2015-04/msg00010.html
+
+- Fix UTF-16 surrogate handling in wctomb and friends.
+ Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00452.html