Skip to content

Commit 9279692

Browse files
committed
Bump module to 0.14.1
1 parent f008258 commit 9279692

File tree

10 files changed

+14
-19
lines changed

10 files changed

+14
-19
lines changed

.github/workflows/trigger_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
- run: |
6767
echo "Setup done"
6868
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
69-
godot-kotlin-jvm-version: "0.14.0-4.5"
69+
godot-kotlin-jvm-version: "0.14.1-4.5.1"
7070
godot-version: "4.5.1-stable"
71-
build-version: "0.14.0"
71+
build-version: "0.14.1"
7272
jvm-version: "17"
7373

7474
build-jvm:

.github/workflows/trigger_on_pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- run: |
1515
echo "Setup done"
1616
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
17-
godot-kotlin-jvm-version: "0.14.0-4.5"
17+
godot-kotlin-jvm-version: "0.14.1-4.5"
1818
godot-version: "4.5.1-stable"
19-
build-version: "0.14.0"
19+
build-version: "0.14.1"
2020
jvm-version: "17"
2121

2222
build-jvm:

.github/workflows/trigger_on_push_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- run: |
2020
echo "Setup done"
2121
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
22-
godot-kotlin-jvm-version: "0.14.0-4.5"
22+
godot-kotlin-jvm-version: "0.14.1-4.5.1"
2323
godot-version: "4.5.1-stable"
24-
build-version: "0.14.0"
24+
build-version: "0.14.1"
2525
jvm-version: "17"
2626

2727
build-jvm:

.github/workflows/trigger_on_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- run: |
2727
echo "Setup done"
2828
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
29-
godot-kotlin-jvm-version: "0.14.0-4.5"
29+
godot-kotlin-jvm-version: "0.14.1-4.5.1"
3030
godot-version: "4.5.1-stable"
31-
build-version: "0.14.0"
31+
build-version: "0.14.1"
3232
jvm-version: "17"
3333

3434
build-jvm:

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ def can_build(env, platform):
22
return True
33

44
def configure(env):
5-
env.add_module_version_string("jvm.0.14.0")
5+
env.add_module_version_string("jvm.0.14.1")

docs/src/doc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ While Kotlin and Godot supports a wide range of platforms, this module for the m
6464

6565
The module uses semantic versioning for its own versions but adds a suffix for the supported Godot version:
6666

67-
Full version: `0.14.0-4.5.1`
67+
Full version: `0.14.1-4.5.1`
6868

69-
Module Version: `0.14.0`
69+
Module Version: `0.14.1`
7070

7171
Supported Godot Version: `4.5.1`
7272

kt/build-logic/convention/src/main/kotlin/publish/PublishToMavenCentralPlugin.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ class PublishToMavenCentralPlugin : Plugin<Project> {
1717
target.plugins.apply(org.gradle.api.publish.maven.plugins.MavenPublishPlugin::class.java)
1818

1919
target.afterEvaluate { evaluatedProject ->
20-
target.extensions.getByType(JavaPluginExtension::class.java).apply {
21-
withSourcesJar()
22-
withJavadocJar()
23-
}
24-
2520
val mavenCentralUser = target.propOrEnv("ORG_GRADLE_PROJECT_mavenCentralUsername") ?: target.propOrEnv("mavenCentralUsername")
2621
val mavenCentralPassword = target.propOrEnv("ORG_GRADLE_PROJECT_mavenCentralPassword") ?: target.propOrEnv("mavenCentralPassword")
2722
val gpgInMemoryKey = target.propOrEnv("ORG_GRADLE_PROJECT_signingInMemoryKey") ?: target.propOrEnv("signingInMemoryKey")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package godot.common
22

3-
const val GODOT_KOTLIN_VERSION = "0.14.0-4.5.1"
3+
const val GODOT_KOTLIN_VERSION = "0.14.1-4.5.1"

kt/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22

3-
godotKotlinJvm = "0.14.0"
3+
godotKotlinJvm = "0.14.1"
44
kotlin = "2.1.10" # https://kotlinlang.org/docs/releases.html#release-details
55
kotlinCoroutine = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
66
godot = "4.5.1"

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef GODOT_JVM_VERSION_H
22
#define GODOT_JVM_VERSION_H
33

4-
constexpr const char* GODOT_KOTLIN_VERSION = "0.14.0-4.5.1";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.14.1-4.5.1";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)