From a6ef4aa171411c571929609aebfb2a89d4f00a90 Mon Sep 17 00:00:00 2001 From: Calvin Liang Date: Thu, 17 Oct 2024 00:09:49 -0700 Subject: [PATCH] bump version to 2.4.0 --- README.md | 9 ++++----- reorderable/build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 84f7377..5621e38 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ If you're using Version Catalog, add the following to your `libs.versions.toml` ```toml [versions] #... -reorderable = "2.3.2" +reorderable = "2.4.0" [libraries] #... @@ -77,7 +77,7 @@ or ```toml [libraries] #... -reorderable = { module = "sh.calvin.reorderable:reorderable", version = "2.3.2" } +reorderable = { module = "sh.calvin.reorderable:reorderable", version = "2.4.0" } ``` then @@ -97,8 +97,7 @@ If you're using Gradle instead, add the following to your `build.gradle` file: ```kotlin dependencies { - // ... - implementation("sh.calvin.reorderable:reorderable:2.3.2") + implementation("sh.calvin.reorderable:reorderable:2.4.0") } ``` @@ -106,7 +105,7 @@ dependencies { ```groovy dependencies { - implementation 'sh.calvin.reorderable:reorderable:2.3.2' + implementation 'sh.calvin.reorderable:reorderable:2.4.0' } ``` diff --git a/reorderable/build.gradle.kts b/reorderable/build.gradle.kts index 807cdeb..dd74a7a 100644 --- a/reorderable/build.gradle.kts +++ b/reorderable/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "sh.calvin.reorderable" -version = "2.3.3" +version = "2.4.0" kotlin { androidTarget {