Skip to content

Commit

Permalink
Prepare for release 0.9.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Mar 11, 2022
1 parent f0c1aaa commit ec60b11
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
Changelog
=========
Version 0.9.6
-------------
* Initial support for JSpecify's @NullMarked annotation (#493)
- Fix bug in handling of TreatGeneratedAsUnannotated (#580)
(Note: this bug is not in any released NullAway version, but was temporarily
introduced to the main/master branch by #493)
* Improved tracking of map nullness
- Improve nullness tracking of map calls in the presence of type casts (#537)
- Reason about iterating over a map's key set using an enhanced for loop (#554)
- Reason about key set iteration for subtypes of Map (#559)
- Add support for Map.putIfAbsent. (#568)
* Add support for data serialization for Nullaway data for UCR's NullAwayAnnotator
- Serialization of Type Change Suggestions for Type Violations (#517)
- Measurement of Method protection against nullability of arguments (#575)
- Enhanced Serialization Test Infrastructure (#579)
- Field initialization serialization (#576)
* Build / CI tooling for NullAway itself:
- Enable parallel builds (#549) (#555)
- Add dependence from coveralls task to codeCoverageReport (#552)
- Switch to temurin on CI (#553)
- Separating NullAwayTests into smaller files (#550)
- Require braces for all conditionals and loops (#556)
- Enable build cache (#562)
- Fix JarInfer integration test on Java 11 (#529)
- Get Android sample apps building on JDK 11 (#531)
- Limit metaspace size (#563)
- Update CI jobs (#565)
- Set epApiVersion for jacoco coverage reporting (#566)
- Compile and test against Error Prone 2.11.0 (#567)
- Fix EP version for jacoco coverage step (#571)
- Update to latest Google Java Format (#572)

Version 0.9.5
-------------
* JDK17 support improvements:
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.5"
annotationProcessor "com.uber.nullaway:nullaway:0.9.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.9.5"
annotationProcessor "com.uber.nullaway:nullaway:0.9.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.9.6-SNAPSHOT
VERSION_NAME=0.9.6

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit ec60b11

Please sign in to comment.