diff --git a/README.md b/README.md
index eaf6e204..c32a1dcb 100644
--- a/README.md
+++ b/README.md
@@ -28,6 +28,28 @@ For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesi
## Amazon KCL support for other languages
To make it easier for developers to write record processors in other languages, we have implemented a Java based daemon, called MultiLangDaemon that does all the heavy lifting. Our approach has the daemon spawn a sub-process, which in turn runs the record processor, which can be written in any language. The MultiLangDaemon process and the record processor sub-process communicate with each other over [STDIN and STDOUT using a defined protocol][multi-lang-protocol]. There will be a one to one correspondence amongst record processors, child processes, and shards. For Python developers specifically, we have abstracted these implementation details away and [expose an interface][kclpy] that enables you to focus on writing record processing logic in Python. This approach enables KCL to be language agnostic, while providing identical features and similar parallel processing model across all languages.
+## Using the KCL
+The recommended way to use the KCL for Java is to consume it from Maven.
+
+### Version 2.x
+ ``` xml
+
+ software.amazon.kinesis
+ amazon-kinesis-client
+ 2.0.1
+
+ ```
+
+### Version 1.x
+ ``` xml
+
+ com.amazonaws
+ amazon-kinesis-client
+ 1.9.1
+
+ ```
+
+
## Release Notes
### Latest Release (2.0.1)
diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml
index 03f4b89f..a05ed42a 100644
--- a/amazon-kinesis-client-multilang/pom.xml
+++ b/amazon-kinesis-client-multilang/pom.xml
@@ -19,7 +19,7 @@
amazon-kinesis-client-pom
software.amazon.kinesis
- 2.0.1
+ 2.0.2-SNAPSHOT
4.0.0
diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml
index c4f20ffd..f9c764e6 100644
--- a/amazon-kinesis-client/pom.xml
+++ b/amazon-kinesis-client/pom.xml
@@ -20,7 +20,7 @@
software.amazon.kinesis
amazon-kinesis-client-pom
- 2.0.1
+ 2.0.2-SNAPSHOT
amazon-kinesis-client
diff --git a/pom.xml b/pom.xml
index cbdf809a..ec41160e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
amazon-kinesis-client-pom
pom
Amazon Kinesis Client Library
- 2.0.1
+ 2.0.2-SNAPSHOT
The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis.