Skip to content

Commit

Permalink
Prepare for release 0.10.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Dec 30, 2022
1 parent e83747a commit ebba16f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
Changelog
=========
Version 0.10.6
--------------
* Handle BITWISE_COMPLEMENT operator (#696)
* Add support for AssertJ (#698)
* Fix logic for @Nullable annotation on type parameter (#702)
* Preserve nullness checks in final fields when propagating nullness into inner contexts (#703)
* NullAwayInfer/Annotator data serialization support [experimental]
- Add source offset and path to reported errors in error serialization. (#704)
* Build / CI tooling for NullAway itself:
- [Jspecify] Update test dep to final JSpecify 0.3.0 release (#700)
= Intermediate PRs: 0.3.0-alpha-3 (#692), 0.3-alpha2 (#691)
- Update to Gradle 7.6 (#690)


Version 0.10.5
--------------
* Report more unboxing errors in a single compilation (#686)
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.5"
annotationProcessor "com.uber.nullaway:nullaway:0.10.6"
// 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.5"
annotationProcessor "com.uber.nullaway:nullaway:0.10.6"
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.6-SNAPSHOT
VERSION_NAME=0.10.6

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit ebba16f

Please sign in to comment.