diff --git a/CHANGELOG.md b/CHANGELOG.md index d0b1836c0c..80c7520b32 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ Changelog ========= +Version 0.10.7 +-------------- +(Bug fix release) +* Resolve regression for type annotations directly on inner types. (#706) + Version 0.10.6 -------------- * Handle BITWISE_COMPLEMENT operator (#696) diff --git a/README.md b/README.md index 0ac46d6cb3..c38346b363 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ plugins { } dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.10.6" + annotationProcessor "com.uber.nullaway:nullaway:0.10.7" // Optional, some source of nullability annotations. // Not required on Android if you use the support @@ -75,7 +75,7 @@ The configuration for an Android project is very similar to the Java case, with ```gradle dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.10.6" + annotationProcessor "com.uber.nullaway:nullaway:0.10.7" errorprone "com.google.errorprone:error_prone_core:2.4.0" errorproneJavac "com.google.errorprone:javac:9+181-r4173-1" } diff --git a/gradle.properties b/gradle.properties index 985688fba8..05a0aed447 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ org.gradle.caching=true org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m GROUP=com.uber.nullaway -VERSION_NAME=0.10.7-SNAPSHOT +VERSION_NAME=0.10.7 POM_DESCRIPTION=A fast annotation-based null checker for Java