Skip to content

Commit

Permalink
Update to release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasForst authored Jan 9, 2022
1 parent e06e4f9 commit 566e300
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -29,7 +29,7 @@ To import Katlib to Maven project use:
<dependency>
<groupId>pw.forst</groupId>
<artifactId>katlib</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</dependency>
```

Expand Down Expand Up @@ -229,4 +229,4 @@ byteBuffer.applyIf(shouldReadInt) { getInt() }
* `Array<*>.filterIsInstance(): Array<R>` - returns an array containing all elements that are instances of specified type parameter R
* `Array<out T?>.filterNotNull(): Array<T>` - returns an array containing all elements that are not `null`
* `Array<out T>.minus(element: T): Array<T>` - returns an array containing all elements of the original collection without the first occurrence of the given element
* `Array<out T>.minus(elements: Array<out T>): Array<T>` - returns an array containing all elements of the original collection except the elements contained in the given elements array
* `Array<out T>.minus(elements: Array<out T>): Array<T>` - returns an array containing all elements of the original collection except the elements contained in the given elements array

0 comments on commit 566e300

Please sign in to comment.