From f37abe25ad5658601b31b2904e8077d7b7c8dc38 Mon Sep 17 00:00:00 2001 From: Lazaro Clapp Date: Mon, 1 Apr 2019 14:27:56 -0400 Subject: [PATCH] Prepare for release 0.7.1. --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 509572c4cf..91025b25f2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +Version 0.7.1 +-------------- +* Remove warning about @nullable var args (#296). + Version 0.7.0 -------------- * Improved (partial but sound-er) varargs support (#291). diff --git a/README.md b/README.md index c7aa482b0b..5fefbc53ac 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ plugins { } dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.7.0" + annotationProcessor "com.uber.nullaway:nullaway:0.7.1" // 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.7.0" + annotationProcessor "com.uber.nullaway:nullaway:0.7.1" } ``` 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 2d1b27805d..96b1ddbb22 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.nullaway -VERSION_NAME=0.7.1-SNAPSHOT +VERSION_NAME=0.7.1 POM_DESCRIPTION=A fast annotation-based null checker for Java