diff --git a/CHANGELOG.md b/CHANGELOG.md index 55f3c8e19..91f2b15bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.0.0 (released 2 November 2018) +------------------ +- #259: Enable configurable `@Generated` annotation type +- #254: Update to Kotlin 1.3, update generated coroutine APIs to be non-experimental +- #250: Add `@NonNull` to struct builder's copy ctor (thanks, @jparise) +- #241: Add nullable annotation to gen'd `findByValue` methods (thanks, @jparise) +- #239: Fix: Canonicalize paths of all loaded thrift files +- #236: Only use base filename in constants' comments (thanks, @jparise) + 1.0.0-RC2 (released 10 September 2018) ------------------ - #235: Emit `@Generated` annotations on generated types diff --git a/README.md b/README.md index de2707b06..28be4c2b9 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ repositories { } dependencies { - implementation 'com.microsoft.thrifty:thrifty-runtime:1.0.0-RC2' + implementation 'com.microsoft.thrifty:thrifty-runtime:1.0.0' } ``` diff --git a/gradle.properties b/gradle.properties index a26a97027..dab7b66d0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.microsoft.thrifty -VERSION=1.0.0-SNAPSHOT +VERSION=1.0.0 POM_URL=https://github.com/microsoft/thrifty/