Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Feb 18, 2023
1 parent b5bbcec commit 7b6af7e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
### 4.9.0 (2023-02-18)
* Gradle 8 support (#77)
* Update checkstyle 10.3.1 -> 10.6.0
* Update pmd 6.47 -> 6.54 (java 19 support)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ NOTE: when updating plugin version in your project don't forget to call `clean`

```groovy
plugins {
id 'ru.vyarus.quality' version '4.8.0'
id 'ru.vyarus.quality' version '4.9.0'
}
```

Expand All @@ -59,7 +59,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath 'ru.vyarus:gradle-quality-plugin:4.8.0'
classpath 'ru.vyarus:gradle-quality-plugin:4.9.0'
}
}
apply plugin: 'ru.vyarus.quality'
Expand All @@ -73,7 +73,7 @@ Plugin compiled for java 8, compatible with java 11

Gradle | Version
--------|-------
5.6-7 | 4.8.0
5.6-8 | 4.9.0
5.1 | [4.2.2](http://xvik.github.io/gradle-quality-plugin/4.2.2)
4.1 | [3.4.0](http://xvik.github.io/gradle-quality-plugin/3.4.0)
older | [2.4.0](http://xvik.github.io/gradle-quality-plugin/2.4.0)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ext {
animalsnifferVersion = '1.7.0'
cpdVersion = '3.3'
spotbugsPluginVersion = '4.8.0'
docVersion = '4.8.0'
docVersion = '4.9.0'
}

repositories { mavenLocal(); mavenCentral(); gradlePluginPortal() }
Expand Down
2 changes: 1 addition & 1 deletion src/doc/docs/about/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Plugin compiled for java 8, compatible with java 11

Gradle | Version
--------|-------
5.6-7 | 4.8.0
5.6-8 | 4.9.0
5.1 | [4.2.2](http://xvik.github.io/gradle-quality-plugin/4.2.2)
4.1 | [3.4.0](http://xvik.github.io/gradle-quality-plugin/3.4.0)
older | [2.4.0](http://xvik.github.io/gradle-quality-plugin/2.4.0)
Expand Down
11 changes: 11 additions & 0 deletions src/doc/docs/about/history.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### [4.9.0](http://xvik.github.io/gradle-quality-plugin/4.9.0) (2023-02-18)
* Gradle 8 support (#77)
* Update checkstyle 10.3.1 -> 10.6.0
* Update pmd 6.47 -> 6.54 (java 19 support)
* Update pmd config:
- Disable [TestClassWithoutTestCases](https://pmd.sourceforge.io/pmd-6.54.0/pmd_rules_java_errorprone.html#testclasswithouttestcases)
- Rename excluded rule [BeanMembersShouldSerialize](https://pmd.sourceforge.io/pmd-6.54.0/pmd_rules_java_errorprone.html#beanmembersshouldserialize) to NonSerializableClass
* Update spotbugs 4.7.1 -> 4.7.3
* Update codenarc 3.1.0 -> 3.2.0
* Fix codenarc for groovy4 support: change to x.x-groovy-4.0 version instead of codenarc-groovy4 artifact

### [4.8.0](http://xvik.github.io/gradle-quality-plugin/4.8.0) (2022-07-02)
* Update checkstyle 9.1 -> 10.3.1
IMPORTANT: Checkstyle 10 requires java 11, but plugin will automatically switch to
Expand Down

0 comments on commit 7b6af7e

Please sign in to comment.