-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error-prone 2.3.1 -> 2.3.2 #412
Conversation
Weirdly, I can see a tag for v2.3.2 and it seems that error-prone's travis build for v2.3.2 passes (https://travis-ci.org/google/error-prone/builds/439386198), but can't actually see the artifact yet in https://jcenter.bintray.com/com/google/errorprone/error_prone_core/ ... |
com.google.errorprone:error_prone_test_helpers = 2.3.1 | ||
com.google.errorprone:error_prone_annotations = 2.3.2 | ||
com.google.errorprone:error_prone_core = 2.3.2 | ||
com.google.errorprone:error_prone_test_helpers = 2.3.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
com.google.errorprone:error_prone_core = 2.3.1 | ||
com.google.errorprone:error_prone_test_helpers = 2.3.1 | ||
com.google.errorprone:error_prone_annotations = 2.3.2 | ||
com.google.errorprone:error_prone_core = 2.3.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
com.google.errorprone:error_prone_annotations = 2.3.1 | ||
com.google.errorprone:error_prone_core = 2.3.1 | ||
com.google.errorprone:error_prone_test_helpers = 2.3.1 | ||
com.google.errorprone:error_prone_annotations = 2.3.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before this PR
I was unable to use baseline-error-prone to compile a project on Java 11:
https://circleci.com/gh/palantir/conjure-java-runtime-api/429
Seems like I was hitting this bug: google/error-prone#1091, fixed in 2.3.2: google/error-prone#1083
After this PR
Things should hopefully work 🤞