From 8dd1c304821c4c9cc9923a77fb245cadea636473 Mon Sep 17 00:00:00 2001 From: Lazaro Clapp Date: Fri, 28 Sep 2018 12:55:06 -0700 Subject: [PATCH] Prepare for release 0.6.0. --- 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 43ddb40917..7a0057dd86 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ Changelog ========= +Version 0.6.0 +------------- +* Add support for marking library parameters as explicitly @Nullable (#228) +* De-genericize NullnessStore (#231) +* Bump Checker Framework to 2.5.5 (#233) +* Pass nullability info on enclosing locals into dataflow analysis for + lambdas and anonymous / local classes (#235) + Version 0.5.6 ------------- * Add coverage measurement through coveralls. (#224) diff --git a/README.md b/README.md index 75b54a70c2..b043dc3209 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ plugins { } dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.5.6" + annotationProcessor "com.uber.nullaway:nullaway:0.6.0" // Optional, some source of nullability annotations. // Not required on Android if you use the support @@ -79,7 +79,7 @@ The configuration for an Android project is very similar to the Java case, with ```gradle dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.5.6" + annotationProcessor "com.uber.nullaway:nullaway:0.6.0" } ``` 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 b49372b5b6..2796af4651 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.nullaway -VERSION_NAME=0.5.7-SNAPSHOT +VERSION_NAME=0.6.0 POM_DESCRIPTION=A fast annotation-based null checker for Java