diff --git a/WHATSNEW b/WHATSNEW
index bedfd6846..4e36ed613 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -129,6 +129,10 @@ Other changes:
* fixcrlf can be used in a filterchain.
+*
FileSets are used to select sets of files and directories.
+Specifies files or directories that should be kept in the target +directory even if they are not present in one of the source +directories.
+ +This nested element is like a FileSet except that it doesn't +support the dir attribute and the usedefaultexcludes attribute +defaults to false.
+ +++<sync todir="site"> + <fileset dir="generated-site"/> +</sync> +
overwrites all files in site with newer files from +generated-site, deletes files from site that are not +present in generated-site.
+ +++<sync todir="site"> + <fileset dir="generated-site"/> + <preserveintarget> + <include name="**/CVS/**"/> + </preserveintarget> +</sync> +
overwrites all files in site with newer files from +generated-site, deletes files from site that are not +present in generated-site but keeps all files in any +CVS sub-directory.
+Copyright © 2003-2005 The Apache Software Foundation. All rights Reserved.