Skip to content

Commit

Permalink
chore: release rather than snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbker committed Feb 12, 2024
1 parent 08b2e89 commit e2e223b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Maven
<dependency>
<groupId>gg.flyte</groupId>
<artifactId>twilight</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
</dependency>
```

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "gg.flyte"
version = "1.1.0-SNAPSHOT"
version = "1.1.0"

repositories {
mavenLocal()
Expand Down

0 comments on commit e2e223b

Please sign in to comment.