Skip to content

Commit

Permalink
Prepare for release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Sep 28, 2018
1 parent c0f3d41 commit 8dd1c30
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Changelog
=========
Version 0.6.0
-------------
* Add support for marking library parameters as explicitly @Nullable (#228)
* De-genericize NullnessStore (#231)
* Bump Checker Framework to 2.5.5 (#233)
* Pass nullability info on enclosing locals into dataflow analysis for
lambdas and anonymous / local classes (#235)

Version 0.5.6
-------------
* Add coverage measurement through coveralls. (#224)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ plugins {
}
dependencies {
annotationProcessor "com.uber.nullaway:nullaway:0.5.6"
annotationProcessor "com.uber.nullaway:nullaway:0.6.0"
// Optional, some source of nullability annotations.
// Not required on Android if you use the support
Expand Down Expand Up @@ -79,7 +79,7 @@ The configuration for an Android project is very similar to the Java case, with

```gradle
dependencies {
annotationProcessor "com.uber.nullaway:nullaway:0.5.6"
annotationProcessor "com.uber.nullaway:nullaway:0.6.0"
}
```
A complete Android `build.gradle` example is [here](https://gist.github.com/msridhar/6cacd429567f1d1ad9a278e06809601c). Also see our [sample app](https://github.com/uber/NullAway/blob/master/sample-app/).
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.5.7-SNAPSHOT
VERSION_NAME=0.6.0

POM_DESCRIPTION=A fast annotation-based null checker for Java

Expand Down

0 comments on commit 8dd1c30

Please sign in to comment.