Prepare pmd release 6.7.0

This commit is contained in:
Andreas Dangel
2018-09-02 14:19:37 +02:00
parent acdab9df56
commit d8c51db85e
2 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@ repository: pmd/pmd
pmd:
version: 6.7.0
date: 2018-??-??
date: 02-September-2018
release_type: minor
output: web

View File

@ -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)