Skip to content

Commit

Permalink
Prepare for release 0.7.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed May 6, 2020
1 parent 47f8d7b commit 68381b7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,17 @@
Changelog
=========

Version 0.7.10
--------------
* Add Java 8 streams nullness-propagation support (#371)
* Give line numbers for uninitialized fields when reporting error on an initializer (#380)
* Include outer$inner class name when reporting field init errors (#375)
* Update to Gradle 6.1.1 (#381)
* Add @MonotonicNonNull as lazy initialization annotation. (#383)
* Add default library model for CompilationUnitTree.getPackageName() (#384)
* Improve matching of native Map methods (#390)
- Fixes an IndexOutOfBoundsException checker crash

Version 0.7.9
-------------
* Multiple dependency upgrades
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -23,7 +23,7 @@ plugins {
}
dependencies {
annotationProcessor "com.uber.nullaway:nullaway:0.7.9"
annotationProcessor "com.uber.nullaway:nullaway:0.7.10"
// Optional, some source of nullability annotations.
// Not required on Android if you use the support
Expand Down Expand Up @@ -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.9"
annotationProcessor "com.uber.nullaway:nullaway:0.7.10"
}
```
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/).
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -13,7 +13,7 @@
# org.gradle.parallel=true

GROUP=com.uber.nullaway
VERSION_NAME=0.7.10-SNAPSHOT
VERSION_NAME=0.7.10

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit 68381b7

Please sign in to comment.