Skip to content

Commit 7a69f25

Browse files
committed
Prepare for release 0.10.13.
1 parent 0431a90 commit 7a69f25

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
Changelog
22
=========
3+
Version 0.10.13
4+
---------------
5+
* Allow library models to define custom stream classes (#807)
6+
* Avoid suggesting castToNonNull fixes in certain cases (#799)
7+
* Ensure castToNonNull insertion/removal suggested fixes do not remove comments (#815)
8+
* Support for JSpecify's 0.3.0 annotation [experimental]
9+
- Generics checks for method overriding (#755)
10+
- Make GenericsChecks methods static (#805)
11+
- Add visitors for handling different types in generic type invariance check (#806)
12+
* Build / CI tooling for NullAway itself:
13+
- Bump versions for some dependencies (#800)
14+
- Update to WALA 1.6.2 (#798)
15+
- Update to Error Prone 2.21.1 (#797)
16+
- Enable contract checking when building NullAway (#802)
17+
- Bump Error Prone Gradle Plugin version (#804)
18+
- Modify JMH Benchmark Workflow For Shellcheck (#813)
19+
- Bump gradle maven publish plugin from 0.21.0 to 0.25.3 (#810)
20+
- Use Spotless to enforce consistent formatting for Gradle build scripts (#809)
21+
- Remove unnecessary compile dependence for jar-infer-cli (#816)
22+
- Added Codecov to CI Pipeline (#820)
23+
324
Version 0.10.12
425
---------------
526
Note: This is the first release built with Java 11. In particular, running

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
}
2424
2525
dependencies {
26-
annotationProcessor "com.uber.nullaway:nullaway:0.10.12"
26+
annotationProcessor "com.uber.nullaway:nullaway:0.10.13"
2727
2828
// Optional, some source of nullability annotations.
2929
// 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
7575

7676
```gradle
7777
dependencies {
78-
annotationProcessor "com.uber.nullaway:nullaway:0.10.12"
78+
annotationProcessor "com.uber.nullaway:nullaway:0.10.13"
7979
errorprone "com.google.errorprone:error_prone_core:2.4.0"
8080
errorproneJavac "com.google.errorprone:javac:9+181-r4173-1"
8181
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ org.gradle.caching=true
1212
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m
1313

1414
GROUP=com.uber.nullaway
15-
VERSION_NAME=0.10.13-SNAPSHOT
15+
VERSION_NAME=0.10.13
1616

1717
POM_DESCRIPTION=A fast annotation-based null checker for Java
1818

0 commit comments

Comments
 (0)