diff --git a/README.md b/README.md
index 12aded2..1d4bfed 100644
--- a/README.md
+++ b/README.md
@@ -13,13 +13,13 @@ Collection of Kotlin extension functions and utilities. This library does not ha
Katlib is available on the Maven Central. Then to import Katlib to Gradle project use:
```Kotlin
-implementation("pw.forst", "katlib", "2.1.0")
+implementation("pw.forst", "katlib", "2.1.1")
```
Or with Groovy DSL
```groovy
-implementation 'pw.forst:katlib:2.1.0'
+implementation 'pw.forst:katlib:2.1.1'
```
To import Katlib to Maven project use:
@@ -29,7 +29,7 @@ To import Katlib to Maven project use:
pw.forst
katlib
- 2.1.0
+ 2.1.1
```
@@ -229,4 +229,4 @@ byteBuffer.applyIf(shouldReadInt) { getInt() }
* `Array<*>.filterIsInstance(): Array` - returns an array containing all elements that are instances of specified type parameter R
* `Array.filterNotNull(): Array` - returns an array containing all elements that are not `null`
* `Array.minus(element: T): Array` - returns an array containing all elements of the original collection without the first occurrence of the given element
-* `Array.minus(elements: Array): Array` - returns an array containing all elements of the original collection except the elements contained in the given elements array
\ No newline at end of file
+* `Array.minus(elements: Array): Array` - returns an array containing all elements of the original collection except the elements contained in the given elements array