Skip to content

Commit

Permalink
bump version code
Browse files Browse the repository at this point in the history
remove unused variable

bump version code in readme
  • Loading branch information
Calvin-LL committed Dec 3, 2023
1 parent 1ec8471 commit 5fba985
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ Add the following to your `build.gradle` file:

```kotlin
dependencies {
implementation("sh.calvin.reorderable:reorderable:1.0.1")
implementation("sh.calvin.reorderable:reorderable:1.1.0")
}
```

#### Groovy DSL

```groovy
dependencies {
implementation 'sh.calvin.reorderable:reorderable:1.0.1'
implementation 'sh.calvin.reorderable:reorderable:1.1.0'
}
```

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

group = "sh.calvin.reorderable"
version = "1.0.1"
version = "1.1.0"

android {
namespace = project.group.toString()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,6 @@ internal class ReorderableItemScopeImpl(
) = composed {
var handleOffset = remember { 0f }
var handleSize = remember { 0 }
val localDensity = LocalDensity.current
onGloballyPositioned {
handleOffset = when (orientation) {
Orientation.Vertical -> it.positionInRoot().y
Expand Down

0 comments on commit 5fba985

Please sign in to comment.