Skip to content

Commit

Permalink
bump version to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed May 7, 2024
1 parent d5df408 commit 3295a8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ If you're using Version Catalog, add the following to your `libs.versions.toml`
```toml
[versions]
#...
reorderable = "2.0.1"
reorderable = "2.0.3"

[libraries]
#...
Expand All @@ -62,7 +62,7 @@ or
```toml
[libraries]
#...
reorderable = { module = "sh.calvin.reorderable:reorderable", version = "2.0.1" }
reorderable = { module = "sh.calvin.reorderable:reorderable", version = "2.0.3" }
```

### Gradle
Expand All @@ -73,15 +73,15 @@ If you're using Gradle instead, add the following to your `build.gradle` file:

```kotlin
dependencies {
implementation("sh.calvin.reorderable:reorderable:2.0.1")
implementation("sh.calvin.reorderable:reorderable:2.0.3")
}
```

#### Groovy DSL

```groovy
dependencies {
implementation 'sh.calvin.reorderable:reorderable:2.0.1'
implementation 'sh.calvin.reorderable:reorderable:2.0.3'
}
```

Expand Down Expand Up @@ -792,7 +792,7 @@ If the items in the list do not contain any button besides the drag handle, I re
##### When `onMove` is called to swap items, the dragging item flickers.

> [!NOTE]
> This assumes you're using version 2.0.2 or later of this library.
> This assumes you're using version 2.0.3 or later of this library.
The `onMove` function expects the list to be updated before it returns. If the list is updated after `onMove` returns, the dragging item will flicker. To fix this, update the list before returning from `onMove`.

Expand Down
2 changes: 1 addition & 1 deletion reorderable/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "sh.calvin.reorderable"
version = "2.0.1"
version = "2.0.3"

kotlin {
androidTarget {
Expand Down

0 comments on commit 3295a8c

Please sign in to comment.