Skip to content

Commit a222268

Browse files
authored
Update to 0.13.1 (#821)
1 parent 648df26 commit a222268

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
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.13.0-4.4.1"
69+
godot-kotlin-jvm-version: "0.13.1-4.4.1"
7070
godot-version: "4.4.1-stable"
71-
build-version: "0.13.0"
71+
build-version: "0.13.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.13.0-4.4.1"
17+
godot-kotlin-jvm-version: "0.13.1-4.4.1"
1818
godot-version: "4.4.1-stable"
19-
build-version: "0.13.0"
19+
build-version: "0.13.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.13.0-4.4.1"
22+
godot-kotlin-jvm-version: "0.13.1-4.4.1"
2323
godot-version: "4.4.1-stable"
24-
build-version: "0.13.0"
24+
build-version: "0.13.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.13.0-4.4.1"
29+
godot-kotlin-jvm-version: "0.13.1-4.4.1"
3030
godot-version: "4.4.1-stable"
31-
build-version: "0.13.0"
31+
build-version: "0.13.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.13.0")
5+
env.add_module_version_string("jvm.0.13.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.13.0-4.4.1`
67+
Full version: `0.13.1-4.4.1`
6868

69-
Module Version: `0.13.0`
69+
Module Version: `0.13.1`
7070

7171
Supported Godot Version: `4.4.1`
7272

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.13.0"
3+
godotKotlinJvm = "0.13.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.4.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.13.0-4.4.1";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.13.1-4.4.1";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)