diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0156781a4..27dd4bda0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
Change Log
==========
+Version 1.7.0
+* Added `QUICK_SETUP` mode for setting notifications/indications (https://github.com/Polidea/RxAndroidBle/pull/479)
+* Fixed possible `IllegalArgumentException` while parsing UUIDs from advertisements (https://github.com/Polidea/RxAndroidBle/pull/486)
+
Version 1.6.0
* Added GATT status codes to BleDisconnectedException (https://github.com/Polidea/RxAndroidBle/pull/456)
diff --git a/README.md b/README.md
index bfb54ac39..76aa575d2 100644
--- a/README.md
+++ b/README.md
@@ -327,7 +327,7 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
### Gradle
```groovy
-compile "com.polidea.rxandroidble:rxandroidble:1.6.0"
+compile "com.polidea.rxandroidble:rxandroidble:1.7.0"
```
### Maven
@@ -335,7 +335,7 @@ compile "com.polidea.rxandroidble:rxandroidble:1.6.0"
com.polidea.rxandroidble
rxandroidble
- 1.6.0
+ 1.7.0
aar
```
diff --git a/gradle.properties b/gradle.properties
index 52574dd3b..e56107084 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.polidea.rxandroidble
-VERSION_NAME=1.7.0-SNAPSHOT
+VERSION_NAME=1.7.0
POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android
diff --git a/mockrxandroidble/README.md b/mockrxandroidble/README.md
index 5e58ae21a..104975d4c 100644
--- a/mockrxandroidble/README.md
+++ b/mockrxandroidble/README.md
@@ -40,7 +40,7 @@ Get MockRxAndroidBle via Maven:
com.polidea.rxandroidble
mockclient
- 1.6.0
+ 1.7.0
aar
```
@@ -48,7 +48,7 @@ Get MockRxAndroidBle via Maven:
or via Gradle
```groovy
-compile "com.polidea.rxandroidble:mockclient:1.6.0"
+compile "com.polidea.rxandroidble:mockclient:1.7.0"
```
### License