Skip to content

Commit

Permalink
Dependencies update
Browse files Browse the repository at this point in the history
- Update the `godot-cpp` dependency to `godot-4.2-stable`
- Update the Godot Android lib dependency to `4.2.0.stable`
  • Loading branch information
m4gr3d committed Nov 30, 2023
1 parent c06c2c3 commit 2ee35db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions config.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
final snapshotGodotAndroidLib = "org.godotengine:godot:4.2.0.rc-SNAPSHOT"
final stableGodotAndroidLib = "org.godotengine:godot:4.2.0.stable"

ext {
versions = [
gradlePluginVersion : '7.4.0',
Expand All @@ -14,13 +11,13 @@ ext {
]

libraries = [
godotAndroidLib: snapshotGodotAndroidLib,
godotAndroidLib: "org.godotengine:godot:4.2.0.stable",
]
}

// Parse the release version from the gradle project properties (e.g: -Prelease_version=<version>)
ext.getReleaseVersion = { ->
final String defaultVersion = "2.0.0-dev-SNAPSHOT"
final String defaultVersion = "2.1.0-dev-SNAPSHOT"

String releaseVersion = project.hasProperty("release_version") ? project.property("release_version") : defaultVersion
if (releaseVersion == null || releaseVersion.isEmpty()) {
Expand Down
2 changes: 1 addition & 1 deletion demo/addons/godotopenxrvendors/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="GodotOpenXRVendors"
description="Godot OpenXR Vendors plugin"
author="https://github.com/GodotVR/godot_openxr_vendors/blob/master/CONTRIBUTORS.md"
version="2.0.1-stable"
version="2.0.2-stable"
script="godot_openxr_export_plugin.gd"

0 comments on commit 2ee35db

Please sign in to comment.