From d8c51db85e13f85db006a6ce4fde0e763ca572c0 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sun, 2 Sep 2018 14:19:37 +0200 Subject: [PATCH] Prepare pmd release 6.7.0 --- docs/_config.yml | 2 +- docs/pages/release_notes.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index 86838109bd..6a57fd47c6 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -2,7 +2,7 @@ repository: pmd/pmd pmd: version: 6.7.0 - date: 2018-??-?? + date: 02-September-2018 release_type: minor output: web diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index 1208aa184c..6330f72bb2 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -38,6 +38,14 @@ This is a {{ site.pmd.release_type }} release. single field / variable per line; or per statement if the `strictMode` property is set. It's an Apex equivalent of the already existing Java rule of the same name. +#### Deprecated Rules + +* The Java rules {% rule java/codestyle/VariableNamingConventions %}, {% rule java/codestyle/MIsLeadingVariableName %}, + {% rule java/codestyle/SuspiciousConstantFieldName %}, and {% rule java/codestyle/AvoidPrefixingMethodParameters %} are + now deprecated, and will be removed with version 7.0.0. They are replaced by the more general + {% rule java/codestyle/FieldNamingConventions %}, {% rule java/codestyle/FormalParameterNamingConventions %}, and + {% rule java/codestyle/LocalVariableNamingConventions %}. + ### Fixed Issues * core @@ -77,14 +85,6 @@ This is a {{ site.pmd.release_type }} release. make ShiftExpression inconsistent. The operator of a ShiftExpression is now accessible through ShiftExpression#getOperator. -#### Deprecated rules - -* The Java rules {% rule java/codestyle/VariableNamingConventions %}, {% rule java/codestyle/MIsLeadingVariableName %}, - {% rule java/codestyle/SuspiciousConstantFieldName %}, and {% rule java/codestyle/AvoidPrefixingMethodParameters %} are - now deprecated, and will be removed with version 7.0.0. They are replaced by the more general - {% rule java/codestyle/FieldNamingConventions %}, {% rule java/codestyle/FormalParameterNamingConventions %}, and - {% rule java/codestyle/LocalVariableNamingConventions %}. - ### External Contributions * [#109](https://github.com/pmd/pmd/pull/109): \[java] Add two linguistics rules under naming - [Arda Aslan](https://github.com/ardaasln)