From 4e536a7b6da9ae4f4dc896e2b0bde7f1f706667c Mon Sep 17 00:00:00 2001 From: Doc Date: Mon, 6 Oct 2025 17:40:44 -0300 Subject: [PATCH 1/2] feat(adventure): update maven repository and modded history version Took 10 minutes --- src/content/docs/adventure/platform/modded.mdx | 10 ++++++---- src/utils/versions.ts | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/content/docs/adventure/platform/modded.mdx b/src/content/docs/adventure/platform/modded.mdx index 65b1f3ce0..3199ae5aa 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.23.0 | 6.5.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"; From 5cbe3bc82d1df7681c53be985576fde0fcd68c5f Mon Sep 17 00:00:00 2001 From: Doc Date: Mon, 6 Oct 2025 19:26:42 -0300 Subject: [PATCH 2/2] fix: update supported version Co-authored-by: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Took 7 minutes --- src/content/docs/adventure/platform/modded.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/adventure/platform/modded.mdx b/src/content/docs/adventure/platform/modded.mdx index 3199ae5aa..6e948e80a 100644 --- a/src/content/docs/adventure/platform/modded.mdx +++ b/src/content/docs/adventure/platform/modded.mdx @@ -81,7 +81,7 @@ 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.23.0 | 6.5.0 | + | 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 |