diff --git a/src/content/docs/adventure/platform/modded.mdx b/src/content/docs/adventure/platform/modded.mdx index 65b1f3ce0..6e948e80a 100644 --- a/src/content/docs/adventure/platform/modded.mdx +++ b/src/content/docs/adventure/platform/modded.mdx @@ -30,8 +30,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce ```kotlin title="build.gradle.kts" replace repositories { // for development builds - maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") { - name = "sonatype-oss-snapshots1" + maven(url = "https://central.sonatype.com/repository/maven-snapshots/") { + name = "central-snapshots" mavenContent { snapshotsOnly() } } // for releases @@ -52,8 +52,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce repositories { // for development builds maven { - name = 'sonatype-oss-snapshots1' - url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + name = 'central-snapshots' + url = 'https://central.sonatype.com/repository/maven-snapshots/' mavenContent { snapshotsOnly() } } // for releases @@ -81,6 +81,8 @@ Each major Minecraft release will require different platform versions. For older | Minecraft Version | Adventure version | `adventure-platform-(mod-shared/fabric/neoforge)` version | |-------------------|-------------------|-----------------------------------------------------------| + | 1.21.6-1.21.8 | 4.24.0 | 6.6.0 | + | 1.21.5 | 4.21.0 | 6.4.0 | | 1.21.2-1.21.4 | 4.20.0 | 6.3.0 | | 1.21-1.21.1 | 4.17.0 | 6.0.0 | diff --git a/src/utils/versions.ts b/src/utils/versions.ts index 09c18c8a9..bec9a2c8a 100644 --- a/src/utils/versions.ts +++ b/src/utils/versions.ts @@ -88,5 +88,5 @@ export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9"; export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC; export const LATEST_ADVENTURE_API_RELEASE = "4.25.0"; export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1"; -export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.5.1"; +export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0"; export const LATEST_ANSI_RELEASE = "1.1.1";