From ce2943ad9eaf28e2371c73271c519cc2d42718f5 Mon Sep 17 00:00:00 2001 From: "Travis CI (pmd-bot)" Date: Sat, 12 Sep 2020 17:52:50 +0000 Subject: [PATCH] Update documentation TRAVIS_JOB_NUMBER=5882.2 TRAVIS_COMMIT_RANGE=53f3759ede1a...dacfff1abf9f --- feed.xml | 4 ++-- pmd_release_notes.html | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/feed.xml b/feed.xml index aa6b864f98..c685386ffc 100644 --- a/feed.xml +++ b/feed.xml @@ -5,8 +5,8 @@ Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features. https://pmd.github.io/pmd/ - Sat, 12 Sep 2020 17:01:59 +0000 - Sat, 12 Sep 2020 17:01:59 +0000 + Sat, 12 Sep 2020 17:50:06 +0000 + Sat, 12 Sep 2020 17:50:06 +0000 Jekyll v3.9.0 diff --git a/pmd_release_notes.html b/pmd_release_notes.html index f31af90332..2c791affa7 100644 --- a/pmd_release_notes.html +++ b/pmd_release_notes.html @@ -1411,9 +1411,24 @@ $('#toc').toc({ minimumHeaders: 0, listType: 'ul', showSpeed: 0, headers: 'h2,h3

New and noteworthy

+

CPD’s AnyTokenizer has been improved

+ +

The AnyTokenizer is used for languages, that don’t have an own lexer/grammar based tokenizer. +AnyTokenizer now handles string literals and end-of-line comments. Fortran, Perl and Ruby have +been updated to use AnyTokenizer instead of their old custom tokenizer based on AbstractTokenizer. +See #2758 for details.

+ +

AbstractTokenizer and the custom tokenizers of Fortran, Perl and Ruby are deprecated now.

+

Fixed Issues