Skip to content

Commit

Permalink
Prepare for release 0.9.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Jan 10, 2022
1 parent 232f344 commit 20e2914
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Changelog
=========
Version 0.9.5
-------------
* JDK17 support improvements:
- Fix crash with switch expression as a lambda body (#543, follow up: #545)
- Better fix for crash on member selects inside module-info.java (#544)
* Bump Guava dependency to 24.1.1 (#536)
* Build / CI tooling for NullAway itself:
- Bump AutoValue and AutoService versions (#538)
- Add task to run NullAway on itself (#542)
- Add test case for unsound map reassignment handling (#541)

Version 0.9.4
-------------
* Fix crash with fully-qualified names in module-info.java import (#534)
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.9.4"
annotationProcessor "com.uber.nullaway:nullaway:0.9.5"
// 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.9.4"
annotationProcessor "com.uber.nullaway:nullaway:0.9.5"
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 @@ -13,7 +13,7 @@
# org.gradle.parallel=true

GROUP=com.uber.nullaway
VERSION_NAME=0.9.5-SNAPSHOT
VERSION_NAME=0.9.5

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit 20e2914

Please sign in to comment.