diff --git a/docs/_config.yml b/docs/_config.yml
index 61ed05eb78..5b2520eeee 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -1,9 +1,9 @@
repository: pmd/pmd
pmd:
- version: 6.32.0-SNAPSHOT
- previous_version: 6.31.0
- date: ??-February-2021
+ version: 6.33.0-SNAPSHOT
+ previous_version: 6.32.0
+ date: ??-March-2021
release_type: minor
# release types: major, minor, bugfix
diff --git a/docs/pages/next_major_development.md b/docs/pages/next_major_development.md
index 8ca17e194d..58b3c0e24d 100644
--- a/docs/pages/next_major_development.md
+++ b/docs/pages/next_major_development.md
@@ -125,6 +125,32 @@ the breaking API changes will be performed in 7.0.0.
an API is tagged as `@Deprecated` or not in the latest minor release. During the development of 7.0.0,
we may decide to remove some APIs that were not tagged as deprecated, though we'll try to avoid it." %}
+#### 6.32.0
+
+##### Experimental APIs
+
+* The experimental class `ASTTypeTestPattern` has been renamed to {% jdoc java::lang.java.ast.ASTTypePattern %}
+ in order to align the naming to the JLS.
+* The experimental class `ASTRecordConstructorDeclaration` has been renamed to {% jdoc java::lang.java.ast.ASTCompactConstructorDeclaration %}
+ in order to align the naming to the JLS.
+* The AST types and APIs around Pattern Matching and Records are not experimental anymore:
+ * {% jdoc !!java::lang.java.ast.ASTVariableDeclaratorId#isPatternBinding() %}
+ * {% jdoc java::lang.java.ast.ASTPattern %}
+ * {% jdoc java::lang.java.ast.ASTTypePattern %}
+ * {% jdoc java::lang.java.ast.ASTRecordDeclaration %}
+ * {% jdoc java::lang.java.ast.ASTRecordComponentList %}
+ * {% jdoc java::lang.java.ast.ASTRecordComponent %}
+ * {% jdoc java::lang.java.ast.ASTRecordBody %}
+ * {% jdoc java::lang.java.ast.ASTCompactConstructorDeclaration %}
+
+##### Internal API
+
+Those APIs are not intended to be used by clients, and will be hidden or removed with PMD 7.0.0.
+You can identify them with the `@InternalApi` annotation. You'll also get a deprecation warning.
+
+* The protected or public member of the Java rule {% jdoc java::lang.java.rule.bestpractices.AvoidUsingHardCodedIPRule %}
+ are deprecated and considered to be internal API. They will be removed with PMD 7.
+
#### 6.31.0
##### Deprecated API
diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md
index 0db79e7282..b8f8783555 100644
--- a/docs/pages/release_notes.md
+++ b/docs/pages/release_notes.md
@@ -14,74 +14,11 @@ This is a {{ site.pmd.release_type }} release.
### New and noteworthy
-#### Java 16 Support
-
-This release of PMD brings support for Java 16. PMD supports [JEP 394: Pattern Matching for instanceof](https://openjdk.java.net/jeps/394) and [JEP 395: Records](https://openjdk.java.net/jeps/395). Both have been promoted
-to be a standard language feature of Java 16.
-
-PMD also supports [JEP 397: Sealed Classes (Second Preview)](https://openjdk.java.net/jeps/397) as a preview
-language feature. In order to analyze a project with PMD that uses these language features, you'll need to enable
-it via the environment variable `PMD_JAVA_OPTS` and select the new language version `16-preview`:
-
- export PMD_JAVA_OPTS=--enable-preview
- ./run.sh pmd -language java -version 16-preview ...
-
-Note: Support for Java 14 preview language features have been removed. The version "14-preview" is no longer available.
-
-#### Modified Rules
-
-* The Apex rule {% rule "apex/documentation/ApexDoc" %} has two new properties: `reportPrivate` and
- `reportProtected`. Previously the rule only considered public and global classes, methods, and
- properties. With these properties, you can verify the existence of ApexDoc comments for private
- and protected methods as well. By default, these properties are disabled to preserve backwards
- compatible behavior.
-
### Fixed Issues
-* apex-documentation
- * [#3075](https://github.com/pmd/pmd/issues/3075): \[apex] ApexDoc should support private access modifier
-* java
- * [#3101](https://github.com/pmd/pmd/issues/3101): \[java] NullPointerException when running PMD under JRE 11
-* java-bestpractices
- * [#3132](https://github.com/pmd/pmd/issues/3132): \[java] UnusedImports with static imports on subclasses
-* java-errorprone
- * [#2716](https://github.com/pmd/pmd/issues/2716): \[java] CompareObjectsWithEqualsRule: False positive with Enums
- * [#3089](https://github.com/pmd/pmd/issues/3089): \[java] CloseResource rule throws exception on spaces in property types
- * [#3133](https://github.com/pmd/pmd/issues/3133): \[java] InvalidLogMessageFormat FP with StringFormattedMessage and ParameterizedMessage
-* plsql
- * [#3106](https://github.com/pmd/pmd/issues/3106): \[plsql] ParseException while parsing EXECUTE IMMEDIATE 'drop database link ' \|\| linkname;
-
### API Changes
-#### Experimental APIs
-
-* The experimental class `ASTTypeTestPattern` has been renamed to {% jdoc java::lang.java.ast.ASTTypePattern %}
- in order to align the naming to the JLS.
-* The experimental class `ASTRecordConstructorDeclaration` has been renamed to {% jdoc java::lang.java.ast.ASTCompactConstructorDeclaration %}
- in order to align the naming to the JLS.
-* The AST types and APIs around Pattern Matching and Records are not experimental anymore:
- * {% jdoc !!java::lang.java.ast.ASTVariableDeclaratorId#isPatternBinding() %}
- * {% jdoc java::lang.java.ast.ASTPattern %}
- * {% jdoc java::lang.java.ast.ASTTypePattern %}
- * {% jdoc java::lang.java.ast.ASTRecordDeclaration %}
- * {% jdoc java::lang.java.ast.ASTRecordComponentList %}
- * {% jdoc java::lang.java.ast.ASTRecordComponent %}
- * {% jdoc java::lang.java.ast.ASTRecordBody %}
- * {% jdoc java::lang.java.ast.ASTCompactConstructorDeclaration %}
-
-#### Internal API
-
-Those APIs are not intended to be used by clients, and will be hidden or removed with PMD 7.0.0.
-You can identify them with the `@InternalApi` annotation. You'll also get a deprecation warning.
-
-* The protected or public member of the Java rule {% jdoc java::lang.java.rule.bestpractices.AvoidUsingHardCodedIPRule %}
- are deprecated and considered to be internal API. They will be removed with PMD 7.
-
### External Contributions
-* [#3098](https://github.com/pmd/pmd/pull/3098): \[apex] ApexDoc optionally report private and protected - [Jonathan Wiesel](https://github.com/jonathanwiesel)
-* [#3107](https://github.com/pmd/pmd/pull/3107): \[plsql] Fix ParseException for EXECUTE IMMEDIATE str1\|\|str2; - [hvbtup](https://github.com/hvbtup)
-* [#3125](https://github.com/pmd/pmd/pull/3125): \[doc] Fix sample code indentation in documentation - [Artur Dryomov](https://github.com/arturdryomov)
-
{% endtocmaker %}
diff --git a/docs/pages/release_notes_old.md b/docs/pages/release_notes_old.md
index d06ea6ccf0..85ed311b09 100644
--- a/docs/pages/release_notes_old.md
+++ b/docs/pages/release_notes_old.md
@@ -5,6 +5,100 @@ permalink: pmd_release_notes_old.html
Previous versions of PMD can be downloaded here: https://github.com/pmd/pmd/releases
+## 27-February-2021 - 6.32.0
+
+The PMD team is pleased to announce PMD 6.32.0.
+
+This is a minor release.
+
+### Table Of Contents
+
+* [New and noteworthy](#new-and-noteworthy)
+ * [Java 16 Support](#java-16-support)
+ * [Modified Rules](#modified-rules)
+* [Fixed Issues](#fixed-issues)
+* [API Changes](#api-changes)
+ * [Experimental APIs](#experimental-apis)
+ * [Internal API](#internal-api)
+* [External Contributions](#external-contributions)
+* [Stats](#stats)
+
+### New and noteworthy
+
+#### Java 16 Support
+
+This release of PMD brings support for Java 16. PMD supports [JEP 394: Pattern Matching for instanceof](https://openjdk.java.net/jeps/394) and [JEP 395: Records](https://openjdk.java.net/jeps/395). Both have been promoted
+to be a standard language feature of Java 16.
+
+PMD also supports [JEP 397: Sealed Classes (Second Preview)](https://openjdk.java.net/jeps/397) as a preview
+language feature. In order to analyze a project with PMD that uses these language features, you'll need to enable
+it via the environment variable `PMD_JAVA_OPTS` and select the new language version `16-preview`:
+
+ export PMD_JAVA_OPTS=--enable-preview
+ ./run.sh pmd -language java -version 16-preview ...
+
+Note: Support for Java 14 preview language features have been removed. The version "14-preview" is no longer available.
+
+#### Modified Rules
+
+* The Apex rule [`ApexDoc`](https://pmd.github.io/pmd-6.32.0/pmd_rules_apex_documentation.html#apexdoc) has two new properties: `reportPrivate` and
+ `reportProtected`. Previously the rule only considered public and global classes, methods, and
+ properties. With these properties, you can verify the existence of ApexDoc comments for private
+ and protected methods as well. By default, these properties are disabled to preserve backwards
+ compatible behavior.
+
+### Fixed Issues
+
+* apex-documentation
+ * [#3075](https://github.com/pmd/pmd/issues/3075): \[apex] ApexDoc should support private access modifier
+* java
+ * [#3101](https://github.com/pmd/pmd/issues/3101): \[java] NullPointerException when running PMD under JRE 11
+* java-bestpractices
+ * [#3132](https://github.com/pmd/pmd/issues/3132): \[java] UnusedImports with static imports on subclasses
+* java-errorprone
+ * [#2716](https://github.com/pmd/pmd/issues/2716): \[java] CompareObjectsWithEqualsRule: False positive with Enums
+ * [#3089](https://github.com/pmd/pmd/issues/3089): \[java] CloseResource rule throws exception on spaces in property types
+ * [#3133](https://github.com/pmd/pmd/issues/3133): \[java] InvalidLogMessageFormat FP with StringFormattedMessage and ParameterizedMessage
+* plsql
+ * [#3106](https://github.com/pmd/pmd/issues/3106): \[plsql] ParseException while parsing EXECUTE IMMEDIATE 'drop database link ' \|\| linkname;
+
+### API Changes
+
+#### Experimental APIs
+
+* The experimental class `ASTTypeTestPattern` has been renamed to ASTTypePattern
+ in order to align the naming to the JLS.
+* The experimental class `ASTRecordConstructorDeclaration` has been renamed to ASTCompactConstructorDeclaration
+ in order to align the naming to the JLS.
+* The AST types and APIs around Pattern Matching and Records are not experimental anymore:
+ * ASTVariableDeclaratorId#isPatternBinding
+ * ASTPattern
+ * ASTTypePattern
+ * ASTRecordDeclaration
+ * ASTRecordComponentList
+ * ASTRecordComponent
+ * ASTRecordBody
+ * ASTCompactConstructorDeclaration
+
+#### Internal API
+
+Those APIs are not intended to be used by clients, and will be hidden or removed with PMD 7.0.0.
+You can identify them with the `@InternalApi` annotation. You'll also get a deprecation warning.
+
+* The protected or public member of the Java rule AvoidUsingHardCodedIPRule
+ are deprecated and considered to be internal API. They will be removed with PMD 7.
+
+### External Contributions
+
+* [#3098](https://github.com/pmd/pmd/pull/3098): \[apex] ApexDoc optionally report private and protected - [Jonathan Wiesel](https://github.com/jonathanwiesel)
+* [#3107](https://github.com/pmd/pmd/pull/3107): \[plsql] Fix ParseException for EXECUTE IMMEDIATE str1\|\|str2; - [hvbtup](https://github.com/hvbtup)
+* [#3125](https://github.com/pmd/pmd/pull/3125): \[doc] Fix sample code indentation in documentation - [Artur Dryomov](https://github.com/arturdryomov)
+
+### Stats
+* 43 commits
+* 21 closed tickets & PRs
+* Days since last release: 27
+
## 30-January-2021 - 6.31.0
The PMD team is pleased to announce PMD 6.31.0.
diff --git a/pmd-apex-jorje/pom.xml b/pmd-apex-jorje/pom.xml
index afbfac44e7..afecc46c43 100644
--- a/pmd-apex-jorje/pom.xml
+++ b/pmd-apex-jorje/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-apex/pom.xml b/pmd-apex/pom.xml
index ced300b713..f6b9b5ed02 100644
--- a/pmd-apex/pom.xml
+++ b/pmd-apex/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-core/pom.xml b/pmd-core/pom.xml
index 2cfeed9847..9e7b440083 100644
--- a/pmd-core/pom.xml
+++ b/pmd-core/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-cpp/pom.xml b/pmd-cpp/pom.xml
index ef355a0e24..465a094300 100644
--- a/pmd-cpp/pom.xml
+++ b/pmd-cpp/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-cs/pom.xml b/pmd-cs/pom.xml
index d4d3b7b7f6..da52e28434 100644
--- a/pmd-cs/pom.xml
+++ b/pmd-cs/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-dart/pom.xml b/pmd-dart/pom.xml
index f738f0f6b4..8d9c3b2590 100644
--- a/pmd-dart/pom.xml
+++ b/pmd-dart/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-dist/pom.xml b/pmd-dist/pom.xml
index a3b9ef0556..f7d0a08194 100644
--- a/pmd-dist/pom.xml
+++ b/pmd-dist/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-doc/pom.xml b/pmd-doc/pom.xml
index 9a827722e1..9ecca097bf 100644
--- a/pmd-doc/pom.xml
+++ b/pmd-doc/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-fortran/pom.xml b/pmd-fortran/pom.xml
index b716a2bd66..c989ed2145 100644
--- a/pmd-fortran/pom.xml
+++ b/pmd-fortran/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-go/pom.xml b/pmd-go/pom.xml
index 9d060dc0ad..a153e8a1d3 100644
--- a/pmd-go/pom.xml
+++ b/pmd-go/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-groovy/pom.xml b/pmd-groovy/pom.xml
index e46c8ddbef..88270a28cc 100644
--- a/pmd-groovy/pom.xml
+++ b/pmd-groovy/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-java/pom.xml b/pmd-java/pom.xml
index e6cafe37b5..529561825c 100644
--- a/pmd-java/pom.xml
+++ b/pmd-java/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-java8/pom.xml b/pmd-java8/pom.xml
index 659f0618c1..a3312c30e6 100644
--- a/pmd-java8/pom.xml
+++ b/pmd-java8/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-javascript/pom.xml b/pmd-javascript/pom.xml
index c83137548a..bc04c20fbf 100644
--- a/pmd-javascript/pom.xml
+++ b/pmd-javascript/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-jsp/pom.xml b/pmd-jsp/pom.xml
index 9e2db80213..2cdf673303 100644
--- a/pmd-jsp/pom.xml
+++ b/pmd-jsp/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-kotlin/pom.xml b/pmd-kotlin/pom.xml
index 1e77733fc7..3c96e0c210 100644
--- a/pmd-kotlin/pom.xml
+++ b/pmd-kotlin/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-lang-test/pom.xml b/pmd-lang-test/pom.xml
index ff619aa88b..193ad25d7e 100644
--- a/pmd-lang-test/pom.xml
+++ b/pmd-lang-test/pom.xml
@@ -12,7 +12,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-lua/pom.xml b/pmd-lua/pom.xml
index 1d7ec10ea6..58787eb87a 100644
--- a/pmd-lua/pom.xml
+++ b/pmd-lua/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-matlab/pom.xml b/pmd-matlab/pom.xml
index c47ffd176b..6ea72fb2db 100644
--- a/pmd-matlab/pom.xml
+++ b/pmd-matlab/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-modelica/pom.xml b/pmd-modelica/pom.xml
index 5493839cc7..6424cbf63a 100644
--- a/pmd-modelica/pom.xml
+++ b/pmd-modelica/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-objectivec/pom.xml b/pmd-objectivec/pom.xml
index f84880ac23..6842171eae 100644
--- a/pmd-objectivec/pom.xml
+++ b/pmd-objectivec/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-perl/pom.xml b/pmd-perl/pom.xml
index 45a7beefb4..9992230e13 100644
--- a/pmd-perl/pom.xml
+++ b/pmd-perl/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-php/pom.xml b/pmd-php/pom.xml
index fdaf4113e1..02ec95908c 100644
--- a/pmd-php/pom.xml
+++ b/pmd-php/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-plsql/pom.xml b/pmd-plsql/pom.xml
index 63026facc4..bb4c9e3610 100644
--- a/pmd-plsql/pom.xml
+++ b/pmd-plsql/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-python/pom.xml b/pmd-python/pom.xml
index de194b25f3..08e9363181 100644
--- a/pmd-python/pom.xml
+++ b/pmd-python/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-ruby/pom.xml b/pmd-ruby/pom.xml
index 6f54b3ce9b..65c7cef352 100644
--- a/pmd-ruby/pom.xml
+++ b/pmd-ruby/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-scala-modules/pmd-scala-common/pom.xml b/pmd-scala-modules/pmd-scala-common/pom.xml
index 4b51456982..945c5bc0d7 100644
--- a/pmd-scala-modules/pmd-scala-common/pom.xml
+++ b/pmd-scala-modules/pmd-scala-common/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../..
diff --git a/pmd-scala-modules/pmd-scala_2.12/pom.xml b/pmd-scala-modules/pmd-scala_2.12/pom.xml
index 4e0b9dd0e0..3f6ed0504b 100644
--- a/pmd-scala-modules/pmd-scala_2.12/pom.xml
+++ b/pmd-scala-modules/pmd-scala_2.12/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd-scala-common
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../pmd-scala-common
diff --git a/pmd-scala-modules/pmd-scala_2.13/pom.xml b/pmd-scala-modules/pmd-scala_2.13/pom.xml
index a1f60f609e..205b19d48a 100644
--- a/pmd-scala-modules/pmd-scala_2.13/pom.xml
+++ b/pmd-scala-modules/pmd-scala_2.13/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd-scala-common
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../pmd-scala-common
diff --git a/pmd-scala/pom.xml b/pmd-scala/pom.xml
index ac758dfd97..5454315c18 100644
--- a/pmd-scala/pom.xml
+++ b/pmd-scala/pom.xml
@@ -9,7 +9,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-swift/pom.xml b/pmd-swift/pom.xml
index ddb0f09fe7..2f1e8bf416 100644
--- a/pmd-swift/pom.xml
+++ b/pmd-swift/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-test/pom.xml b/pmd-test/pom.xml
index ec6d860430..aae188ce58 100644
--- a/pmd-test/pom.xml
+++ b/pmd-test/pom.xml
@@ -8,7 +8,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-visualforce/pom.xml b/pmd-visualforce/pom.xml
index 443501dd3b..4df64ee495 100644
--- a/pmd-visualforce/pom.xml
+++ b/pmd-visualforce/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-vm/pom.xml b/pmd-vm/pom.xml
index c885210bf8..b6064c6a91 100644
--- a/pmd-vm/pom.xml
+++ b/pmd-vm/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pmd-xml/pom.xml b/pmd-xml/pom.xml
index 181e6c5403..d4d2025656 100644
--- a/pmd-xml/pom.xml
+++ b/pmd-xml/pom.xml
@@ -7,7 +7,7 @@
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
../
diff --git a/pom.xml b/pom.xml
index 12606c198e..5b3b2b6374 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
net.sourceforge.pmd
pmd
- 6.32.0-SNAPSHOT
+ 6.33.0-SNAPSHOT
pom
PMD
@@ -76,7 +76,7 @@
- 2021-01-30T17:04:16Z
+ 2021-02-27T08:44:05Z
7