From 3d1dc0a73e7cb7addfb8c3391b37c308fc1634ef Mon Sep 17 00:00:00 2001 From: Lazaro Clapp Date: Wed, 13 Feb 2019 20:42:02 -0800 Subject: [PATCH] Prepare for release 0.6.5. --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7105b26e2..4dab1eb492 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +Version 0.6.5 +--------------- +* Various fixes for generating @SuppressWarnings (#271) +* Improved error message now doesn't tell users to report NullAway config errors to Error Prone (#273) +* Adding support for Activity and Fragment coming from the support libraries (#275) +* Library models fixes (#277) +* Add Fragment.onViewCreated as a known initializer. (#279) + Version 0.6.4 --------------- * Initial support for JDK 11 (#263). Core NullAway should be working, but JarInfer does not yet work. diff --git a/README.md b/README.md index 17f8a3d7a2..db03f3d767 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ plugins { } dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.6.4" + annotationProcessor "com.uber.nullaway:nullaway:0.6.5" // 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.6.4" + annotationProcessor "com.uber.nullaway:nullaway:0.6.5" } ``` A complete Android `build.gradle` example is [here](https://gist.github.com/msridhar/6cacd429567f1d1ad9a278e06809601c). Also see our [sample app](https://github.com/uber/NullAway/blob/master/sample-app/). diff --git a/gradle.properties b/gradle.properties index bc6f0f7eec..a731c0fec9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.nullaway -VERSION_NAME=0.6.5-SNAPSHOT +VERSION_NAME=0.6.5 POM_DESCRIPTION=A fast annotation-based null checker for Java