From 3a7969f6d20da2a419a22413d3f5e0b2a63f5e44 Mon Sep 17 00:00:00 2001 From: MohamedRejeb Date: Thu, 10 Oct 2024 16:18:35 +0100 Subject: [PATCH] Update version to 0.3.0 --- README.md | 2 +- convention-plugins/src/main/kotlin/root.publication.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c05a2f8..7bcd16b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Compose DND is a library that allows you to easily add drag and drop functionali Add the following dependency to your module `build.gradle.kts` file: ```kotlin -implementation("com.mohamedrejeb.dnd:compose-dnd:0.2.0") +implementation("com.mohamedrejeb.dnd:compose-dnd:0.3.0") ``` ## Usage diff --git a/convention-plugins/src/main/kotlin/root.publication.gradle.kts b/convention-plugins/src/main/kotlin/root.publication.gradle.kts index fbb254c..bb3df01 100644 --- a/convention-plugins/src/main/kotlin/root.publication.gradle.kts +++ b/convention-plugins/src/main/kotlin/root.publication.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.mohamedrejeb.dnd" - version = System.getenv("VERSION") ?: "0.3.0-alpha01" + version = System.getenv("VERSION") ?: "0.3.0" } nexusPublishing {