Skip to content

Commit

Permalink
Prepare for release 0.9.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Aug 3, 2022
1 parent 6ab3dcd commit a902718
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,18 @@
Changelog
=========
Version 0.9.9
-------------
* Fix handling of empty contract arguments (#616)
* Fix inconsistent treament of generated code in RestrictiveAnnotationHandler (#618)
* Allow Library Models to override annotations. (#624)
* Allow tracking field accesses outside the this instance and static fields (#625)
* Add Guava 31+ support by treating @ParametricNullness as @nullable (#629)
* Refactoring:
- Clean up: Remove method parameter protection analysis (#622)
- Clean up: Remove nullable annotation configuration in fix serialization. (#621)
* Build / CI tooling for NullAway itself:
- Add a microbenchmark for type inference / dataflow (#617)

Version 0.9.8
-------------
* Fix false positive involving type parameter @Nullable annotations (#609)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -23,7 +23,7 @@ plugins {
}
dependencies {
annotationProcessor "com.uber.nullaway:nullaway:0.9.8"
annotationProcessor "com.uber.nullaway:nullaway:0.9.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.9.8"
annotationProcessor "com.uber.nullaway:nullaway:0.9.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
Expand Up @@ -12,7 +12,7 @@ org.gradle.caching=true
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m

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

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit a902718

Please sign in to comment.