Skip to content

Commit

Permalink
Prepare for release 0.10.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Aug 2, 2023
1 parent b061288 commit 6a1e8bb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
Changelog
=========
Version 0.10.12
---------------
Note: This is the first release built with Java 11. In particular, running
JarInfer now requires a JDK 11 JVM. NullAway is still capable of analyzing JDK 8
source/target projects, and should be compatible with the Error Prone JDK 9 javac
just as the release before, but a JDK 11 javac is recommended.
* Update to WALA 1.6.1 and remove ability to build on JDK 8 (#777)
* Fix compatibility issue when building on JDK 17 but running on JDK 8 (#779)
* Fix JDK compatibility issue in LombokHandler (#795)
* Improve auto-fixing of unnecessary castToNonNull calls (#796)
* Support for JSpecify's 0.3.0 annotation [experimental]
- JSpecify: avoid crashes when encountering raw types (#792)
- Fix off-by-one error in JSpecify checking of parameter passing (#793)
* Build / CI tooling for NullAway itself:
- Fix Publish Snapshot CI job (#774)
- Add step to create release on GitHub (#775)
- Build the Android sample app on JDK 17 (#776)
- Update to Error Prone 2.20.0 (#772)
- Add tasks to run JDK 8 tests on JDK 11+ (#778)
- Switch to Spotless for formatting Java code (#780)
- Added GCP JMH Benchmark Workflow (#770)
- Set concurrency for JMH benchmarking workflow (#784)
- Disable daemon when running benchmarks (#786)
- Update to Gradle 8.2.1 (#781)

Version 0.10.11
---------------
* NULL_LITERAL expressions may always be null (#749)
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.11"
annotationProcessor "com.uber.nullaway:nullaway:0.10.12"
// 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.11"
annotationProcessor "com.uber.nullaway:nullaway:0.10.12"
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.12-SNAPSHOT
VERSION_NAME=0.10.12

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit 6a1e8bb

Please sign in to comment.