Skip to content

Commit 40599eb

Browse files
authored
Update to 0.12.2 (#790)
1 parent d822378 commit 40599eb

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
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.12.1-4.4"
69+
godot-kotlin-jvm-version: "0.12.2-4.4"
7070
godot-version: "4.4-stable"
71-
build-version: "0.12.1"
71+
build-version: "0.12.2"
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.12.1-4.4"
17+
godot-kotlin-jvm-version: "0.12.2-4.4"
1818
godot-version: "4.4-stable"
19-
build-version: "0.12.1"
19+
build-version: "0.12.2"
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.12.1-4.4"
22+
godot-kotlin-jvm-version: "0.12.2-4.4"
2323
godot-version: "4.4-stable"
24-
build-version: "0.12.1"
24+
build-version: "0.12.2"
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.12.1-4.4"
29+
godot-kotlin-jvm-version: "0.12.2-4.4"
3030
godot-version: "4.4-stable"
31-
build-version: "0.12.1"
31+
build-version: "0.12.2"
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.12.1")
5+
env.add_module_version_string("jvm.0.12.2")

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.12.1-4.4`
67+
Full version: `0.12.2-4.4`
6868

69-
Module Version: `0.12.1`
69+
Module Version: `0.12.2`
7070

7171
Supported Godot Version: `4.4`
7272

harness/tests/export_presets.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ script_export_mode=0
2020

2121
[preset.0.options]
2222

23-
custom_template/debug="D:/Godot/Module/kotlin/bin/godot.windows.template_debug.x86_64.jvm.0.12.1.exe"
24-
custom_template/release="D:/Godot/Module/kotlin/bin/godot.windows.template_release.x86_64.jvm.0.12.1.exe"
23+
custom_template/debug="D:/Godot/Module/kotlin/bin/godot.windows.template_debug.x86_64.jvm.0.12.2.exe"
24+
custom_template/release="D:/Godot/Module/kotlin/bin/godot.windows.template_release.x86_64.jvm.0.12.2.exe"
2525
debug/export_console_wrapper=1
2626
binary_format/embed_pck=false
2727
texture_format/s3tc_bptc=true

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.12.1"
3+
godotKotlinJvm = "0.12.2"
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.4"

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.12.1-4.4";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.12.2-4.4";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)