From 657a09f11731f3db9fa0ab4d568a6866c01e9d89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 10:38:50 +0000 Subject: [PATCH] Bump checker-qual from 3.26.0 to 3.27.0 in /annotation-file-utilities Bumps [checker-qual](https://github.com/typetools/checker-framework) from 3.26.0 to 3.27.0. - [Release notes](https://github.com/typetools/checker-framework/releases) - [Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/typetools/checker-framework/compare/checker-framework-3.26.0...checker-framework-3.27.0) --- updated-dependencies: - dependency-name: org.checkerframework:checker-qual dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- annotation-file-utilities/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/annotation-file-utilities/build.gradle b/annotation-file-utilities/build.gradle index 3d9cbf743..d857e0556 100644 --- a/annotation-file-utilities/build.gradle +++ b/annotation-file-utilities/build.gradle @@ -58,7 +58,7 @@ dependencies { implementation 'org.plumelib:plume-util:1.5.9' implementation 'org.plumelib:reflection-util:1.0.5' // Annotations in checker-qual.jar are used, but no checkers are (currently) run on the code. - compileOnly 'org.checkerframework:checker-qual:3.26.0' + compileOnly 'org.checkerframework:checker-qual:3.27.0' ext.errorproneVersion = '2.15.0' // TODO: it's a bug that annotatedlib:guava requires the error_prone_annotations dependency. implementation "com.google.errorprone:error_prone_annotations:${errorproneVersion}" @@ -69,7 +69,7 @@ dependencies { implementation 'org.ow2.asm:asm:9.4' testImplementation group: 'junit', name: 'junit', version: '4.13.2' - testImplementation 'org.checkerframework:checker-qual:3.25.0' + testImplementation 'org.checkerframework:checker-qual:3.27.0' errorprone("com.google.errorprone:error_prone_core:${errorproneVersion}") }