diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5acf98c..e796f5d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
Change Log
==========
+## Version 1.9.3
+
+_2020-06-11_
+
+ * Fix: Tweak a shrinker rule to mitigate an R8 bug which was causing classes unrelated to the Kotlin adpater code generation to be retained.
+ * Fix: Ensure that the Kotlin adapter code generation does not line wrap in the middle of a string if your JSON keys contain spaces.
+ * Fix: Strip type anotations before emitting type references like `Foo::class` in the Kotlin adapter code generation.
+ * Fix: Separate the runtime check for Kotlin's `DefaultConstructorMarker` from the check for `Metadata`. A shrinker may have removed `Metadata` and we should still check for `DefaultConstructorMarker`.
+
+
## Version 1.9.2
_2019-11-17_
diff --git a/README.md b/README.md
index 7844fa0..24311b3 100644
--- a/README.md
+++ b/README.md
@@ -532,12 +532,12 @@ The reflection adapter requires the following additional dependency:
com.squareup.moshi
moshi-kotlin
- 1.9.2
+ 1.9.3
```
```kotlin
-implementation("com.squareup.moshi:moshi-kotlin:1.9.2")
+implementation("com.squareup.moshi:moshi-kotlin:1.9.3")
```
Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a
@@ -567,13 +567,13 @@ add the following to your build to enable the annotation processor:
com.squareup.moshi
moshi-kotlin-codegen
- 1.9.2
+ 1.9.3
provided
```
```kotlin
-kapt("com.squareup.moshi:moshi-kotlin-codegen:1.9.2")
+kapt("com.squareup.moshi:moshi-kotlin-codegen:1.9.3")
```
You must also have the `kotlin-stdlib` dependency on the classpath during compilation in order for
@@ -599,12 +599,12 @@ Download [the latest JAR][dl] or depend via Maven:
com.squareup.moshi
moshi
- 1.9.2
+ 1.9.3
```
or Gradle:
```kotlin
-implementation("com.squareup.moshi:moshi:1.9.2")
+implementation("com.squareup.moshi:moshi:1.9.3")
```
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].