aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLazaro Clapp <lazaro@uber.com>2023-10-18 20:50:47 -0700
committerLazaro Clapp <lazaro@uber.com>2023-10-18 20:50:47 -0700
commit72668849bd408e3264f1aeeaa413af7f161897d6 (patch)
tree2699be3cf3ef1f81f9854155f925d7867869e547
parent5355c7cf167ae06cbe9e0ed8b478e37eb50fc36e (diff)
downloadnullaway-72668849bd408e3264f1aeeaa413af7f161897d6.tar.gz
Prepare for release 0.10.15.
-rwxr-xr-xCHANGELOG.md18
-rw-r--r--gradle.properties2
2 files changed, 19 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 26c65e8..f7b48b6 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,23 @@
Changelog
=========
+Version 0.10.15
+---------------
+* [IMPORTANT] Update minimum Error Prone version and Guava version (#843)
+ NullAway now requires Error Prone 2.10.0 or later
+* Add Spring mock/testing annotations to excluded field annotation list (#757)
+* Update to Checker Framework 3.39.0 (#839) [Support for JDK 21 constructs]
+* Support for JSpecify's 0.3.0 annotation [experimental]
+ - Properly check generic method overriding in explicitly-typed anonymous classes (#808)
+ - JSpecify: handle incorrect method parameter nullability for method reference (#845)
+ - JSpecify: initial handling of generic enclosing types for inner classes (#837)
+* Build / CI tooling for NullAway itself:
+ - Update Gradle and a couple of plugin versions (#832)
+ - Run recent JDK tests on JDK 21 (#834)
+ - Fix which JDKs are installed on CI (#835)
+ - Update to Error Prone 2.22.0 (#833)
+ - Ignore code coverage for method executed non-deterministically in tests (#838 and #844)
+ - Build NullAway with JSpecify mode enabled (#841)
+
Version 0.10.14
---------------
IMPORTANT: This version introduces EXPERIMENTAL JDK21 support.
diff --git a/gradle.properties b/gradle.properties
index 4524725..64ed79f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -12,7 +12,7 @@ org.gradle.caching=true
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m
GROUP=com.uber.nullaway
-VERSION_NAME=0.10.15-SNAPSHOT
+VERSION_NAME=0.10.15
POM_DESCRIPTION=A fast annotation-based null checker for Java