From b6e964493c5d59703c8a234b52432e40596ce5cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jun 2022 05:56:02 +0800 Subject: [PATCH] fix: bump default spotbugs version from 4.7.0 to 4.7.1 (#762) * build(deps): bump spotbugs from 4.7.0 to 4.7.1 Bumps [spotbugs](https://github.com/spotbugs/spotbugs) from 4.7.0 to 4.7.1. - [Release notes](https://github.com/spotbugs/spotbugs/releases) - [Changelog](https://github.com/spotbugs/spotbugs/blob/master/CHANGELOG.md) - [Commits](https://github.com/spotbugs/spotbugs/compare/4.7.0...4.7.1) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * docs: reflect the latest SpotBugs version Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kengo TODA --- README.md | 5 +++-- build.gradle | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 524687fb..0e16d243 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Configure `spotbugs` to choose your favorite SpotBugs version: ```groovy dependencies { - spotbugs 'com.github.spotbugs:spotbugs:4.7.0' + spotbugs 'com.github.spotbugs:spotbugs:4.7.1' } ``` @@ -104,7 +104,7 @@ dependencies { ```kotlin dependencies { - spotbugs("com.github.spotbugs:spotbugs:4.7.0") + spotbugs("com.github.spotbugs:spotbugs:4.7.1") } ``` @@ -160,6 +160,7 @@ You can change SpotBugs version by [the `toolVersion` property of the spotbugs e |Gradle Plugin|SpotBugs| |-----:|-----:| +| 5.0.9| 4.7.1| | 5.0.7| 4.7.0| | 5.0.4| 4.5.3| | 5.0.3| 4.5.2| diff --git a/build.gradle b/build.gradle index cdbdcebd..755821d7 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ repositories { ext { errorproneVersion = '2.14.0' - spotBugsVersion = '4.7.0' + spotBugsVersion = '4.7.1' slf4jVersion = '1.8.0-beta4' androidGradlePluginVersion = '7.2.1' }