Skip to content

Commit 2f93191

Browse files
committed
Bump version to 4.5.1
1 parent 7100ba5 commit 2f93191

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/trigger_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
echo "Setup done"
6868
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
6969
godot-kotlin-jvm-version: "0.14.0-4.5"
70-
godot-version: "4.5-stable"
70+
godot-version: "4.5.1-stable"
7171
build-version: "0.14.0"
7272
jvm-version: "17"
7373

.github/workflows/trigger_on_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
echo "Setup done"
1616
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
1717
godot-kotlin-jvm-version: "0.14.0-4.5"
18-
godot-version: "4.5-stable"
18+
godot-version: "4.5.1-stable"
1919
build-version: "0.14.0"
2020
jvm-version: "17"
2121

.github/workflows/trigger_on_push_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "Setup done"
2121
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
2222
godot-kotlin-jvm-version: "0.14.0-4.5"
23-
godot-version: "4.5-stable"
23+
godot-version: "4.5.1-stable"
2424
build-version: "0.14.0"
2525
jvm-version: "17"
2626

.github/workflows/trigger_on_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "Setup done"
2828
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
2929
godot-kotlin-jvm-version: "0.14.0-4.5"
30-
godot-version: "4.5-stable"
30+
godot-version: "4.5.1-stable"
3131
build-version: "0.14.0"
3232
jvm-version: "17"
3333

docs/src/doc/index.md

Lines changed: 2 additions & 2 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.14.0-4.5`
67+
Full version: `0.14.0-4.5.1`
6868

6969
Module Version: `0.14.0`
7070

71-
Supported Godot Version: `4.5`
71+
Supported Godot Version: `4.5.1`
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.14.0-4.5"
3+
const val GODOT_KOTLIN_VERSION = "0.14.0-4.5.1"

kt/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
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.5"
6+
godot = "4.5.1"
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.14.0-4.5";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.14.0-4.5.1";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)