Skip to content

Commit

Permalink
Prepare for release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rharter committed Mar 3, 2021
1 parent 712ff85 commit d57cc5e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## Version 1.1.0 (2021-03-03)

* Clean up misc gson name references in code and examples (#163)
* Fix proguard names for inner classes (#165)
* Fix runtime artifact ID (#170)
* Box generics in adapter calls (#171)
* Fix createReadMethod return statement constructor type (#179)

## Version 1.0.0 (2020-01-19)

Note that this 1.0 release updates the gradle dependency name to `auto-value-moshi-extension`, and the optional `MoshiAdapterFactory` lives in a different dependency.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ this should only be applied to nullable properties.
Add a Gradle dependency:

```kotlin
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-extension:1.0.0")
implementation("com.ryanharter.auto.value:auto-value-moshi-runtime:1.0.0")
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-extension:1.1.0")
implementation("com.ryanharter.auto.value:auto-value-moshi-runtime:1.1.0")

// If using optional @MoshiAdapterFactory factory
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-factory:1.0.0")
annotationProcessor("com.ryanharter.auto.value:auto-value-moshi-factory:1.1.0")
```

## 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=1.0.1-SNAPSHOT
VERSION_NAME=1.1.0

POM_DESCRIPTION=AutoValue extension that generates a Moshi JsonAdapter for JSON serialization of AutoValue classes.

Expand Down

0 comments on commit d57cc5e

Please sign in to comment.