Skip to content

Commit 7bf2e93

Browse files
committed
Bump version
1 parent f8e42c3 commit 7bf2e93

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.github/workflows/trigger_dev.yml

Lines changed: 3 additions & 3 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.1-4.4.1"
70-
godot-version: "4.4.1-stable"
71-
build-version: "0.13.1"
69+
godot-kotlin-jvm-version: "0.14.0-4.5"
70+
godot-version: "4.5-stable"
71+
build-version: "0.14.0"
7272
jvm-version: "17"
7373

7474
build-jvm:

.github/workflows/trigger_on_pull_request.yml

Lines changed: 3 additions & 3 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.1-4.4.1"
18-
godot-version: "4.4.1-stable"
19-
build-version: "0.13.1"
17+
godot-kotlin-jvm-version: "0.14.0-4.5"
18+
godot-version: "4.5-stable"
19+
build-version: "0.14.0"
2020
jvm-version: "17"
2121

2222
build-jvm:

.github/workflows/trigger_on_push_master.yml

Lines changed: 3 additions & 3 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.1-4.4.1"
23-
godot-version: "4.4.1-stable"
24-
build-version: "0.13.1"
22+
godot-kotlin-jvm-version: "0.14.0-4.5"
23+
godot-version: "4.5-stable"
24+
build-version: "0.14.0"
2525
jvm-version: "17"
2626

2727
build-jvm:

.github/workflows/trigger_on_tag.yml

Lines changed: 3 additions & 3 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.1-4.4.1"
30-
godot-version: "4.4.1-stable"
31-
build-version: "0.13.1"
29+
godot-kotlin-jvm-version: "0.14.0-4.5"
30+
godot-version: "4.5-stable"
31+
build-version: "0.14.0"
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.1")
5+
env.add_module_version_string("jvm.0.14.0")

docs/src/doc/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ 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.1-4.4.1`
67+
Full version: `0.14.0-4.5`
6868

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

71-
Supported Godot Version: `4.4.1`
71+
Supported Godot Version: `4.5`
7272

7373
This module relies on a Kotlin *compiler plugin* for registering your classes and members to Godot. As the compiler API from Kotlin is not stable yet, at the moment we can only support specific Kotlin version per release.
7474

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.13.1-4.4.1"
3+
const val GODOT_KOTLIN_VERSION = "0.14.0-4.5"

kt/gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[versions]
22

3-
godotKotlinJvm = "0.13.1"
3+
godotKotlinJvm = "0.14.0"
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
6-
godot = "4.4.1"
6+
godot = "4.5"
77
ideaPluginDefaultIntellijVersion = "2025.1"
88

99
toolchain-jvm="11"

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.1-4.4.1";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.14.0-4.5";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)