about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2015-05-03 22:49:56 +0100
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2015-05-03 22:49:56 +0100
commit5b00bfecac854a90ca2b66dd763848eed88d01ec (patch)
treef958273a6153c9046ee340b9959bd4098b545a84
parentab7ec8d9851fea8230e1ccfba284c5bfaf457d88 (diff)
downloadzsh-5b00bfecac854a90ca2b66dd763848eed88d01ec.tar.gz
zsh-5b00bfecac854a90ca2b66dd763848eed88d01ec.tar.xz
zsh-5b00bfecac854a90ca2b66dd763848eed88d01ec.zip
NEWS update
-rw-r--r--ChangeLog4
-rw-r--r--NEWS37
2 files changed, 33 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index c6f3d810a..ecb878ee2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-05-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* 35018 (corrected): NEWS: news.
+
 2015-05-03  Oliver Kiddle  <opk@zsh.org>
 
 	35011: Completion/BSD/Type/_jails, Completion/Solaris/Command/_beadm,
diff --git a/NEWS b/NEWS
index 3f60321d6..86b0bd40c 100644
--- a/NEWS
+++ b/NEWS
@@ -4,8 +4,35 @@ CHANGES FROM PREVIOUS VERSIONS OF ZSH
 
 Note also the list of incompatibilities in the README file.
 
-Changes since 5.0.0
--------------------
+Changes from 5.0.7 to 5.0.8
+---------------------------
+
+- Global aliases can be created for syntactic tokens such as command
+  separators (";", "&", "|", "&&", "||"), redirection operators, etc.
+  Use at your own risk!  The POSIX_ALIASES option is interpreted more
+  strictly to prevent expansion of these and other alias names containing
+  quotes, glob metacharacters, parameter references, etc.
+
+- There have been various further improvements to builtin handling
+  with the POSIX_BUILTINS option (off by default) for compatibility with
+  the POSIX standard.
+
+- 'whence -v' is now more informative, and 'whence -S' shows you
+  how a full chain of symbolic links resolves to a command.
+
+- The 'p' parameter flag now allows an argument to be specified
+  as a reference to a variable, e.g. ${(ps.$sep.)foo} to split $foo
+  on a string given by $sep.
+
+- Elements of the watch variable may now be patterns.
+
+- The logic for retrying history locking has been improved.
+
+- Some rationalisations have been made to the zsh/db/gdbm module that
+  should make it more useful and predictable in operation.
+
+Changes from 5.0.0 to 5.0.7
+---------------------------
 
 - Numeric constants encountered in mathematical expressions (but not other
   contexts) can contain underscores as separators that will be ignored on
@@ -117,12 +144,6 @@ Changes since 5.0.0
   Running fn writes "hello" to logfile.  In older versions of the shell
   it would create an empty file at the point of definition.
 
-- Global aliases can be created for syntactic tokens such as command
-  separators (";", "&", "|", "&&", "||"), redirection operators, etc.
-  Use at your own risk!  The POSIX_ALIASES option is interpreted more
-  strictly to prevent expansion of these and other alias names containing
-  quotes, glob metacharacters, parameter references, etc.
-
 Changes between 4.2 and 5.0.0
 -----------------------------