From d062ad2fc78e89d5594005dff8702a8379b624fa Mon Sep 17 00:00:00 2001 From: Lazaro Clapp Date: Mon, 23 Sep 2019 10:59:50 -0700 Subject: [PATCH] Prepare for release 0.7.8. --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 084c20a9f2..289b5a5aff 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +Version 0.7.8 +------------- +* Added NullAway.Optional suppression (#359) +* [JarInfer] Ignore non-public classes when inferring annotations. (#360) + Version 0.7.7 ------------- * [Optionals] Support Optional isPresent call in assertThat (#349) diff --git a/README.md b/README.md index 19bc5d41e9..7a739b861d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ plugins { } dependencies { - annotationProcessor "com.uber.nullaway:nullaway:0.7.7" + annotationProcessor "com.uber.nullaway:nullaway:0.7.8" // 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.7" + annotationProcessor "com.uber.nullaway:nullaway:0.7.8" } ``` 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 417b0dbbe5..220bb18f19 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.nullaway -VERSION_NAME=0.7.8-SNAPSHOT +VERSION_NAME=0.7.8 POM_DESCRIPTION=A fast annotation-based null checker for Java