Skip to content

Commit

Permalink
Prepare for release 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rharter committed Jul 30, 2019
1 parent fdcd573 commit 1c31c32
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## Version 0.4.6 (2019-07-30)

* Supports incremental annotation processing. (#113, #114)
* Fixes an issue with how `nullSafe` is applied when using `@Nullable` constructor parameters. (#108)
* `@Nullable` annotations are now copied to constructor. (#111)

## Version 0.4.5 (2017-12-14)

* User nullSafe adapters for @Nullable properties (#95)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ Moshi moshi = new Moshi.Builder()
Add a Gradle dependency:

```kotlin
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi:0.4.5")
implementation("com.ryanharter.auto.value:auto-value-moshi-annotations:0.4.5")
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi:0.4.6")
implementation("com.ryanharter.auto.value:auto-value-moshi-annotations:0.4.6")
```

## License
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.ryanharter.auto.value
VERSION_NAME=0.4.6-SNAPSHOT
VERSION_NAME=0.4.6

POM_DESCRIPTION=AutoValue extension that creates a Moshi TypeAdapterFactory

Expand Down

0 comments on commit 1c31c32

Please sign in to comment.