Skip to content

Commit

Permalink
Bump FG & Loom to 1.19.2 (#2165)
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Aug 7, 2022
1 parent 54ed9e8 commit 4b01778
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions worldedit-fabric/build.gradle.kts
Expand Up @@ -21,8 +21,8 @@ applyShadowConfiguration()
apply(plugin = "fabric-loom")
apply(plugin = "java-library")

val minecraftVersion = "1.19.1"
val loaderVersion = "0.14.8"
val minecraftVersion = "1.19.2"
val loaderVersion = "0.14.9"

val fabricApiConfiguration: Configuration = configurations.create("fabricApi")

Expand All @@ -48,7 +48,7 @@ dependencies {
"modImplementation"("net.fabricmc:fabric-loader:$loaderVersion")

// [1] declare fabric-api dependency...
"fabricApi"("net.fabricmc.fabric-api:fabric-api:0.58.5+1.19.1")
"fabricApi"("net.fabricmc.fabric-api:fabric-api:0.59.0+1.19.2")

// [2] Load the API dependencies from the fabric mod json...
@Suppress("UNCHECKED_CAST")
Expand Down
4 changes: 2 additions & 2 deletions worldedit-forge/build.gradle.kts
Expand Up @@ -12,11 +12,11 @@ plugins {
applyPlatformAndCoreConfiguration(javaRelease = 17)
applyShadowConfiguration()

val minecraftVersion = "1.19.1"
val minecraftVersion = "1.19.2"
val nextMajorMinecraftVersion: String = minecraftVersion.split('.').let { (useless, major) ->
"$useless.${major.toInt() + 1}"
}
val forgeVersion = "42.0.0"
val forgeVersion = "43.0.0"

val apiClasspath = configurations.create("apiClasspath") {
isCanBeResolved = true
Expand Down

0 comments on commit 4b01778

Please sign in to comment.