diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1dccd56b7..e8753963d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
Change Log
==========
+Version 1.11.0
+* Added workaround for scans with settings match found and/or lost but no filters (https://github.com/Polidea/RxAndroidBle/pull/612)
+* Fixed typo in `BleCharacteristicNotFoundException` (https://github.com/Polidea/RxAndroidBle/pull/625)
+* Added scan permission helper functions (https://github.com/Polidea/RxAndroidBle/pull/642)
+
Version 1.10.5
* Fixed possibly incorrect order of notifications and operation completions (https://github.com/Polidea/RxAndroidBle/pull/639)
* Fixed possibility of library being stalled on operation cancelling (https://github.com/Polidea/RxAndroidBle/pull/650)
diff --git a/README.md b/README.md
index 4f2fd42e7..c3d6475cd 100644
--- a/README.md
+++ b/README.md
@@ -336,7 +336,7 @@ Keep in mind that these are only _samples_ to show how the library can be used.
### Gradle
```groovy
-implementation "com.polidea.rxandroidble2:rxandroidble:1.10.5"
+implementation "com.polidea.rxandroidble2:rxandroidble:1.11.0"
```
### Maven
@@ -344,7 +344,7 @@ implementation "com.polidea.rxandroidble2:rxandroidble:1.10.5"
com.polidea.rxandroidble2
rxandroidble
- 1.10.5
+ 1.11.0
aar
```
diff --git a/gradle.properties b/gradle.properties
index 3d38cb64c..736d6d058 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.polidea.rxandroidble2
-VERSION_NAME=1.11.0-SNAPSHOT
+VERSION_NAME=1.11.0
POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android
diff --git a/mockrxandroidble/README.md b/mockrxandroidble/README.md
index afab982fd..b0453beb4 100644
--- a/mockrxandroidble/README.md
+++ b/mockrxandroidble/README.md
@@ -40,7 +40,7 @@ Get MockRxAndroidBle via Maven:
com.polidea.rxandroidble2
mockclient
- 1.10.5
+ 1.11.0
aar
```
@@ -48,7 +48,7 @@ Get MockRxAndroidBle via Maven:
or via Gradle
```groovy
-implementation "com.polidea.rxandroidble2:mockclient:1.10.5"
+implementation "com.polidea.rxandroidble2:mockclient:1.11.0"
```
### License