From 35ae85148610504820b867bfbb32daa1f76fdb29 Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Sun, 22 Mar 2009 03:52:46 +0000 Subject: [PATCH] preparing for a release. --- build.xml | 2 +- src/xdocs/releasenotes.xml | 91 +++++++++++++++++++++++++++++++++++--- 2 files changed, 85 insertions(+), 8 deletions(-) diff --git a/build.xml b/build.xml index 1869bab4d..c98847ce4 100644 --- a/build.xml +++ b/build.xml @@ -7,7 +7,7 @@ - + diff --git a/src/xdocs/releasenotes.xml b/src/xdocs/releasenotes.xml index 335735c7e..0218ffee9 100755 --- a/src/xdocs/releasenotes.xml +++ b/src/xdocs/releasenotes.xml @@ -9,6 +9,82 @@ +
+

The following checks were added:

+ +

The following checks were changed from a Check to a FileSetCheck:

+ +

+ This means that the checks above must not be declared under the + TreeWalker module anymore. For example, the following Checkstyle + 4.4 configuration file: +

+ +<module name="Checker"> + <module name="TreeWalker"> + <module name="Header"> + <property name="headerFile" value="${checkstyle.header.file}"/> + </module> + </module> +</module> + + +

becomes the following Checkstyle 5.0 configuration file:

+ +<module name="Checker"> + <module name="Header"> + <property name="headerFile" value="${checkstyle.header.file}"/> + <property name="fileExtensions" value="java"/> + </module> +</module> + +

The following checks were removed:

+ +

Major change to FileSetCheck architecture to move the @@ -98,6 +174,14 @@ filter that uses nearby comments to suppress audit events. Thanks to Mick Killianey for providing patch #2354424. +

  • + Added the new checks RegexpMultiline + RegexpSingleline + RegexpSinglelineJava. +
  • Fixed Bugs:

    @@ -118,13 +202,6 @@ #2506439. - -

    Notes:

    -
      -
    • - ... -
    • -