From e2e223b6c866bfade0cd5114a61bd46928cf49ae Mon Sep 17 00:00:00 2001 From: Josh <43449531+joshbker@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:16:02 +0000 Subject: [PATCH] chore: release rather than snapshot --- README.md | 6 +++--- build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a9a5dc4..fc68be1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Maven gg.flyte twilight -1.1.0-SNAPSHOT +1.1.0 ``` @@ -28,14 +28,14 @@ maven { url "https://repo.flyte.gg/releases" } -implementation "gg.flyte:twilight:1.1.0-SNAPSHOT" +implementation "gg.flyte:twilight:1.1.0" ``` Gradle (Kotlin DSL) ```kotlin maven("https://repo.flyte.gg/releases") -implementation("gg.flyte:twilight:1.1.0-SNAPSHOT") +implementation("gg.flyte:twilight:1.1.0") ``` Certain features of Twilight require configuration, which can be done via the Twilight class. To setup a Twilight class instance, you can use the `twilight` function as shown below: diff --git a/build.gradle.kts b/build.gradle.kts index 5b97182..bd9b15a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "gg.flyte" -version = "1.1.0-SNAPSHOT" +version = "1.1.0" repositories { mavenLocal()