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()