Skip to content

Commit

Permalink
Prepare for release 0.10.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Mar 8, 2023
1 parent 9b6d93f commit e593f11
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
Changelog
=========
Version 0.10.10
---------------
* Add command line option to skip specific library models. (#741)
* Support for specific libraries/APIs:
- Model Map.getOrDefault (#724)
- Model Class.cast (#731)
- Model Class.isInstance (#732)
* Internal code refactorings:
- Refactor code to use Map.getOrDefault where possible (#727)
- Break loops when result can no longer change (#728)
* Support for JSpecify's 0.3.0 annotation [experimental]
- JSpecify: initial checks for generic type compatibility at assignments (#715)
- Add JSpecify checking for return statements (#734)
* NullAwayInfer/Annotator data serialization support [experimental]
- Refactoring in symbol serialization (#736)
- Refactoring tabSeparatedToString logic to prepare for serialization version 3 (#738)
- Update method serialization to exclude type use annotations and type arguments (#735)
* Docs fix: -XepExcludedPaths was added in 2.1.3, not 2.13 (#744)

Version 0.10.9
--------------
* Add support for external init annotations in constructors (#725)
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.9"
annotationProcessor "com.uber.nullaway:nullaway:0.10.10"
// 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.9"
annotationProcessor "com.uber.nullaway:nullaway:0.10.10"
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.10-SNAPSHOT
VERSION_NAME=0.10.10

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit e593f11

Please sign in to comment.