aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLazaro Clapp <lazaro@uber.com>2021-12-28 19:47:14 -0500
committerLazaro Clapp <lazaro@uber.com>2021-12-28 19:47:14 -0500
commit0831768f26a0334262fafe6e742987dd00e83d72 (patch)
treed6337b0c22a9665a75617fbe031641d9ae4cb4df
parentc9ef3f4d73f1d6b06507a47579f75e45d2c61c16 (diff)
downloadnullaway-0831768f26a0334262fafe6e742987dd00e83d72.tar.gz
Prepare for release 0.9.4.
-rwxr-xr-xCHANGELOG.md4
-rw-r--r--README.md4
-rw-r--r--gradle.properties2
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f66539a..2791646 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
Changelog
=========
+Version 0.9.4
+-------------
+* Fix crash with fully-qualified names in module-info.java import (#534)
+
Version 0.9.3
-------------
IMPORTANT: This version introduces EXPERIMENTAL JDK17 support.
diff --git a/README.md b/README.md
index 9d24da1..d4556f7 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ plugins {
}
dependencies {
- annotationProcessor "com.uber.nullaway:nullaway:0.9.2"
+ annotationProcessor "com.uber.nullaway:nullaway:0.9.4"
// 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.9.2"
+ annotationProcessor "com.uber.nullaway:nullaway:0.9.4"
errorprone "com.google.errorprone:error_prone_core:2.4.0"
errorproneJavac "com.google.errorprone:javac:9+181-r4173-1"
}
diff --git a/gradle.properties b/gradle.properties
index d6041f0..2433b29 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -13,7 +13,7 @@
# org.gradle.parallel=true
GROUP=com.uber.nullaway
-VERSION_NAME=0.9.4-SNAPSHOT
+VERSION_NAME=0.9.4
POM_DESCRIPTION=A fast annotation-based null checker for Java