Skip to content

Commit

Permalink
Prepare for release 0.10.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Sep 1, 2023
1 parent 0a83f42 commit 75db7db
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
Changelog
=========
Version 0.10.13
---------------
* Allow library models to define custom stream classes (#807)
* Avoid suggesting castToNonNull fixes in certain cases (#799)
* Ensure castToNonNull insertion/removal suggested fixes do not remove comments (#815)
* Support for JSpecify's 0.3.0 annotation [experimental]
- Generics checks for method overriding (#755)
- Make GenericsChecks methods static (#805)
- Add visitors for handling different types in generic type invariance check (#806)
* Build / CI tooling for NullAway itself:
- Bump versions for some dependencies (#800)
- Update to WALA 1.6.2 (#798)
- Update to Error Prone 2.21.1 (#797)
- Enable contract checking when building NullAway (#802)
- Bump Error Prone Gradle Plugin version (#804)
- Modify JMH Benchmark Workflow For Shellcheck (#813)
- Bump gradle maven publish plugin from 0.21.0 to 0.25.3 (#810)
- Use Spotless to enforce consistent formatting for Gradle build scripts (#809)
- Remove unnecessary compile dependence for jar-infer-cli (#816)
- Added Codecov to CI Pipeline (#820)

Version 0.10.12
---------------
Note: This is the first release built with Java 11. In particular, running
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.12"
annotationProcessor "com.uber.nullaway:nullaway:0.10.13"
// 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.12"
annotationProcessor "com.uber.nullaway:nullaway:0.10.13"
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.13-SNAPSHOT
VERSION_NAME=0.10.13

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit 75db7db

Please sign in to comment.