diff --git a/CHANGELOG.md b/CHANGELOG.md
index 44df73eee..725e75359 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,11 @@
Change Log
==========
-Version 1.7.0-SNAPSHOT
+Version 1.7.0
* Introduced a new API that allows for background scanning in modern Android OS versions (https://github.com/Polidea/RxAndroidBle/issues/369)
-
+* Fixed LocationServicesOkObservable (https://github.com/Polidea/RxAndroidBle/pull/438)
+* Added GATT status code to `BleDisconnectionException` (https://github.com/Polidea/RxAndroidBle/pull/405)
+* Fixed possible concurrent access to `DisconnectionRouter` (https://github.com/Polidea/RxAndroidBle/pull/442)
+* Fixed race condition in `CharacteristicLongWriteOperation` (https://github.com/Polidea/RxAndroidBle/pull/465)
Version 1.6.0
* Deprecated ConnectionSharingAdapter (https://github.com/Polidea/RxAndroidBle/pull/397)
diff --git a/README.md b/README.md
index 714bdd039..7b17b7e8d 100644
--- a/README.md
+++ b/README.md
@@ -344,7 +344,7 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
### Gradle
```groovy
-compile "com.polidea.rxandroidble2:rxandroidble:1.6.0"
+compile "com.polidea.rxandroidble2:rxandroidble:1.7.0"
```
### Maven
@@ -352,7 +352,7 @@ compile "com.polidea.rxandroidble2:rxandroidble:1.6.0"
com.polidea.rxandroidble2
rxandroidble
- 1.6.0
+ 1.7.0
aar
```
diff --git a/gradle.properties b/gradle.properties
index 70c7522eb..26fbc654a 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.polidea.rxandroidble2
-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 78ae887d1..e979d959f 100644
--- a/mockrxandroidble/README.md
+++ b/mockrxandroidble/README.md
@@ -40,7 +40,7 @@ Get MockRxAndroidBle via Maven:
com.polidea.rxandroidble2
mockclient
- 1.6.0
+ 1.7.0
aar
```
@@ -48,7 +48,7 @@ Get MockRxAndroidBle via Maven:
or via Gradle
```groovy
-compile "com.polidea.rxandroidble2:mockclient:1.6.0"
+compile "com.polidea.rxandroidble2:mockclient:1.7.0"
```
### License