Skip to content

Commit

Permalink
Merge branch 'master' into manu/model-mapordefault
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Feb 1, 2023
2 parents 13d5357 + 8a24aa3 commit fed5314
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
Changelog
=========
Version 0.10.9
--------------
* Add support for external init annotations in constructors (#725)
* Ignore incompatibly annotated var args from Kotlin code. (#721)
* Support for specific libraries/APIs:
- Add Throwable.getCause and getLocalizedMessage() library models (#717)
- Support more test assertions in OptionalEmptinessHandler (#718)
- Support isInstanceOf(...) as implying non-null in assertion libraries (#726)
* [Refactor] Avoid redundant Map lookups (#722)
* Build / CI tooling for NullAway itself:
- Update to Error Prone 2.18.0 (#707)

Version 0.10.8
--------------
* Don't do checks for type casts and parameterized trees in unannotated code (#712)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}
dependencies {
annotationProcessor "com.uber.nullaway:nullaway:0.10.8"
annotationProcessor "com.uber.nullaway:nullaway:0.10.9"
// 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.10.8"
annotationProcessor "com.uber.nullaway:nullaway:0.10.9"
errorprone "com.google.errorprone:error_prone_core:2.4.0"
errorproneJavac "com.google.errorprone:javac:9+181-r4173-1"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ org.gradle.caching=true
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m

GROUP=com.uber.nullaway
VERSION_NAME=0.10.9-SNAPSHOT
VERSION_NAME=0.10.10-SNAPSHOT

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit fed5314

Please sign in to comment.