diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 9f184fd0e..172058b3b 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -295,6 +295,7 @@ Raphael Pierquin
Ray Waldin
Remie Bolte
Richard Evans
+Richard Steele
Rick Beton
Robert Anderson
Robert Clark
diff --git a/WHATSNEW b/WHATSNEW
index 7c1920c92..45a3fe70e 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -29,6 +29,9 @@ Other changes:
* Addition of 'skipNonTests' attribute to
Filtersets are used for doing
replacements in tasks such as <copy>
, etc.
Filters can also by specified by one or more nested propertysets, the + contents of which are applied when the filterset is created.
+If you specify multiple values for the same token, the last one defined within a filterset will be used.
@@ -181,4 +184,17 @@ but wish to replace the token%DATE*
with today's date.
<filterset refid="myFilterSet"/>
</copy>
+
+You are copying the version.txt
file to the dist
+directory from the build
directory
+but wish to replace the token @project.date@
with the property of the same name.
+<copy file="${build.dir}/version.txt" toFile="${dist.dir}/version.txt"> + <filterset> + <propertyset> + <propertyref name="project.date"/> + </propertyset> + </filterset> +</copy> +