From 15e6b9692b1baf969cda430e3eb6587d841c1b76 Mon Sep 17 00:00:00 2001 From: kayjaydee Date: Tue, 28 Apr 2026 16:38:07 +0200 Subject: [PATCH] release: bump version to 0.1.0 --- build.gradle.kts | 2 +- examples/README.md | 2 +- examples/async-moderation/build.gradle.kts | 2 +- examples/bounty-board/build.gradle.kts | 2 +- examples/periodic-leaderboard/build.gradle.kts | 2 +- examples/player-load/build.gradle.kts | 2 +- gradle.properties | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index adb92f7..a5695cc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ plugins { } group = findProperty("libGroup") as String? ?: "com.mythlane" -version = findProperty("libVersion") as String? ?: "0.1.0-SNAPSHOT" +version = findProperty("libVersion") as String? ?: "0.1.0" subprojects { group = rootProject.group diff --git a/examples/README.md b/examples/README.md index d796d9c..dc635b5 100644 --- a/examples/README.md +++ b/examples/README.md @@ -35,7 +35,7 @@ includeBuild("../..") { } ``` -So `implementation("com.mythlane:async:0.1.0-SNAPSHOT")` resolves to the +So `implementation("com.mythlane:async:0.1.0")` resolves to the local `:dist` project — no Maven publication required during dev. ## What's stubbed diff --git a/examples/async-moderation/build.gradle.kts b/examples/async-moderation/build.gradle.kts index c0d9e39..9823f8d 100644 --- a/examples/async-moderation/build.gradle.kts +++ b/examples/async-moderation/build.gradle.kts @@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get() dependencies { compileOnly(libs.hytale.server) - implementation("com.mythlane:async:0.1.0-SNAPSHOT") + implementation("com.mythlane:async:0.1.0") } kotlin { diff --git a/examples/bounty-board/build.gradle.kts b/examples/bounty-board/build.gradle.kts index 8f43755..48dd070 100644 --- a/examples/bounty-board/build.gradle.kts +++ b/examples/bounty-board/build.gradle.kts @@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get() dependencies { compileOnly(libs.hytale.server) - implementation("com.mythlane:async:0.1.0-SNAPSHOT") + implementation("com.mythlane:async:0.1.0") } kotlin { diff --git a/examples/periodic-leaderboard/build.gradle.kts b/examples/periodic-leaderboard/build.gradle.kts index d5b3f43..0b473a3 100644 --- a/examples/periodic-leaderboard/build.gradle.kts +++ b/examples/periodic-leaderboard/build.gradle.kts @@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get() dependencies { compileOnly(libs.hytale.server) - implementation("com.mythlane:async:0.1.0-SNAPSHOT") + implementation("com.mythlane:async:0.1.0") } kotlin { diff --git a/examples/player-load/build.gradle.kts b/examples/player-load/build.gradle.kts index 83342c0..bd668ea 100644 --- a/examples/player-load/build.gradle.kts +++ b/examples/player-load/build.gradle.kts @@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get() dependencies { compileOnly(libs.hytale.server) - implementation("com.mythlane:async:0.1.0-SNAPSHOT") + implementation("com.mythlane:async:0.1.0") } kotlin { diff --git a/gradle.properties b/gradle.properties index 8f020b9..9d834cc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ libGroup=com.mythlane -libVersion=0.1.0-SNAPSHOT +libVersion=0.1.0 org.gradle.jvmargs=-Xmx2048m org.gradle.caching=true