Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
🎉 Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sya-ri committed Aug 14, 2022
1 parent d18b541 commit 4f2e19c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "dev.s7a"
version = "1.0.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions examples/e2e/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ plugins {
application
}

version = "1.0.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
mavenLocal()
}

dependencies {
implementation("dev.s7a:gofile:1.0.0-SNAPSHOT")
implementation("dev.s7a:gofile:1.0.0")
implementation("io.ktor:ktor-client-cio:2.1.0")
}

Expand Down
4 changes: 2 additions & 2 deletions examples/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ plugins {
application
}

version = "1.0.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
mavenLocal()
}

dependencies {
implementation("dev.s7a:gofile:1.0.0-SNAPSHOT")
implementation("dev.s7a:gofile:1.0.0")
implementation("io.ktor:ktor-client-cio:2.1.0")
}

Expand Down
4 changes: 2 additions & 2 deletions examples/native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
kotlin("multiplatform") version "1.7.10"
}

version = "1.0.0-SNAPSHOT"
version = "1.0.0"

repositories {
mavenCentral()
Expand All @@ -29,7 +29,7 @@ kotlin {
sourceSets {
val nativeMain by getting {
dependencies {
implementation("dev.s7a:gofile:1.0.0-SNAPSHOT")
implementation("dev.s7a:gofile:1.0.0")
implementation("io.ktor:ktor-client-cio:2.1.0")
implementation("com.squareup.okio:okio:3.2.0")
}
Expand Down

0 comments on commit 4f2e19c

Please sign in to comment.