1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-12 18:46:16 +02:00

unposted: update distribution docs for 5.4 release.

This commit is contained in:
Peter Stephenson 2017-07-29 23:03:16 +01:00
parent f183ed66c8
commit 32ca9222af
4 changed files with 21 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2017-07-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Etc/FAQ.yo, NEWS, README: update in preparation for
5.4 release.
2017-07-28 Daniel Shahaf <d.s@daniel.shahaf.name>
* 41467: Completion/Unix/Command/_tmux,

View File

@ -306,7 +306,7 @@ sect(On what machines will it run?)
sect(What's the latest version?)
Zsh 5.3.1 is the latest production version. For details of all the
Zsh 5.4 is the latest production version. For details of all the
changes, see the NEWS file in the source distribution.
A beta of the next version is sometimes available. Development of zsh is

12
NEWS
View File

@ -14,10 +14,18 @@ expansion (see zshexpn(1)), so they could neither be quoted nor be the
result of parameter expansion. Examples: 's=command; $s -V ls' and
'\command -V ls' now work as expected.
Functions executed by ZLE widgets no longer have they standard input
closed, but is now redirected from /dev/null instead. That still guards
Functions executed by ZLE widgets no longer have their standard input
closed, but redirected from /dev/null instead. That still guards
against user defined widgets inadvertently reading from the tty device.
There is an option WARN_NESTED_VAR, a companion to the existing
WARN_CREATE_GLOBAL that causes a warning if a function updates a
variable from an enclosing scope without using typeset -g. It can be
turned on for an individual function with "functions -W".
zmodload now has an option -s to be silent on a failure to find a module
but still print other errors.
Changes from 5.2 to 5.3.1
-------------------------

10
README
View File

@ -5,10 +5,10 @@ THE Z SHELL (ZSH)
Version
-------
This is version 5.3.1 of the shell. This is a stable release. There are
a few visible improvements since 5.2 as well as many bugfixes. Note
This is version 5.4 of the shell. This is a stable release. There are
a few visible improvements since 5.3.1 as well as many bugfixes. Note
in particular the changs highlighted under "Incompatibilites
between 5.2 and 5.3.1" below. See NEWS for more information.
since 5.3.1" below. See NEWS for more information.
Installing Zsh
--------------
@ -74,8 +74,8 @@ to undo the escaping with:
This is also needed if $vcs_info_msg_0_ is used to set $psvar.
4) functions executed by ZLE widgets no longer have they standard input
closed, but is now redirected from /dev/null instead. That still guards
4) functions executed by ZLE widgets no longer have their standard input
closed, but redirected from /dev/null instead. That still guards
against user defined widgets inadvertently reading from the tty device,
and addresses the antisocial behaviour of running a command with its
stdin closed.