Skip to content

Commit eb7478b

Browse files
authored
Update to 4.6.3 (#918)
1 parent b362642 commit eb7478b

10 files changed

Lines changed: 16 additions & 26 deletions

File tree

.github/workflows/trigger_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ 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.16.0-4.6.2"
70-
godot-version: "4.6.2-stable"
69+
godot-kotlin-jvm-version: "0.16.0-4.6.3"
70+
godot-version: "4.6.3-stable"
7171
build-version: "0.16.0"
7272
jvm-version: "17"
7373

.github/workflows/trigger_on_pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ 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.16.0-4.6.2"
18-
godot-version: "4.6.2-stable"
17+
godot-kotlin-jvm-version: "0.16.0-4.6.3"
18+
godot-version: "4.6.3-stable"
1919
build-version: "0.16.0"
2020
jvm-version: "17"
2121

.github/workflows/trigger_on_push_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ 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.16.0-4.6.2"
23-
godot-version: "4.6.2-stable"
22+
godot-kotlin-jvm-version: "0.16.0-4.6.3"
23+
godot-version: "4.6.3-stable"
2424
build-version: "0.16.0"
2525
jvm-version: "17"
2626

.github/workflows/trigger_on_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ 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.16.0-4.6.2"
30-
godot-version: "4.6.2-stable"
29+
godot-kotlin-jvm-version: "0.16.0-4.6.3"
30+
godot-version: "4.6.3-stable"
3131
build-version: "0.16.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.16.0-4.6.2`
67+
Full version: `0.16.0-4.6.3`
6868

6969
Module Version: `0.16.0`
7070

71-
Supported Godot Version: `4.6.2`
71+
Supported Godot Version: `4.6.3`
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, each release still defines a minimum supported Kotlin version.
7474

kt/api-generator/src/main/resources/api.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"header": {
33
"version_major": 4,
44
"version_minor": 6,
5-
"version_patch": 2,
5+
"version_patch": 3,
66
"version_status": "stable",
77
"version_build": "official",
8-
"version_full_name": "Godot Engine v4.6.2.stable.official",
8+
"version_full_name": "Godot Engine v4.6.3.stable.official",
99
"precision": "single"
1010
},
1111
"builtin_class_sizes": [
@@ -270964,7 +270964,7 @@
270964270964
{
270965270965
"name": "DEEP_DUPLICATE_NONE",
270966270966
"value": 0,
270967-
"description": "No subresorces at all are duplicated. This is useful even in a deep duplication to have all the arrays and dictionaries duplicated but still pointing to the original resources."
270967+
"description": "No subresources at all are duplicated. This is useful even in a deep duplication to have all the arrays and dictionaries duplicated but still pointing to the original resources."
270968270968
},
270969270969
{
270970270970
"name": "DEEP_DUPLICATE_INTERNAL",

kt/godot-library/godot-api-library/src/main/kotlin/godot/api/Resource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ public open class Resource : RefCounted() {
397397
`value`: Long,
398398
) : GodotEnum {
399399
/**
400-
* No subresorces at all are duplicated. This is useful even in a deep duplication to have all
400+
* No subresources at all are duplicated. This is useful even in a deep duplication to have all
401401
* the arrays and dictionaries duplicated but still pointing to the original resources.
402402
*/
403403
NONE(0),

kt/gradle/libs.versions.toml

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

33
godotKotlinJvm = "0.16.0"
4-
godot = "4.6.2"
4+
godot = "4.6.3"
55
kotlin = "2.3.20" # https://kotlinlang.org/docs/releases.html#release-details
66
kotlinCoroutine = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
77
ideaPluginDefaultIntellijVersion = "2025.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.16.0-4.6.2";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.16.0-4.6.3";
55

66
#endif// GODOT_JVM_VERSION_H

versionBumpGuide.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
When updating this project's release version or Kotlin version, update these locations:
22
- `src/version.h`: `GODOT_KOTLIN_VERSION`.
33

4-
- `kt/common/src/main/kotlin/godot/common/Version.kt`:
5-
- `GODOT_KOTLIN_JVM_VERSION` for the module version.
6-
- `GODOT_VERSION` for the supported Godot version.
7-
- `GODOT_KOTLIN_VERSION` is assembled from those two constants.
8-
9-
- `kt/tools-common/src/main/kotlin/godot/tools/common/Version.kt`:
10-
- `SUPPORTED_KOTLIN_VERSION` if the release intentionally bumps Kotlin too.
11-
- `KOTLIN_COROUTINE_VERSION` if the release intentionally bumps coroutines too.
12-
- `IOS_JDK_VERSION`, `IOS_GRAAL_JDK_BUILD_VERSION`, and `IOS_CAP_CACHE_VERSION` if the iOS toolchain bundle changes.
13-
144
- `kt/gradle/libs.versions.toml`:
155
- `godotJvmVersion` for the module version.
166
- `kotlin` only if the release intentionally bumps Kotlin too.

0 commit comments

Comments
 (0)