From d63e776abe9294bce31c082e99d233f960fde069 Mon Sep 17 00:00:00 2001 From: zml Date: Mon, 12 Jan 2026 14:37:17 -0800 Subject: [PATCH] chore(deps): Update adventure versinos --- src/content/docs/adventure/platform/modded.mdx | 11 +++++++++-- src/utils/versions.ts | 6 +++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/content/docs/adventure/platform/modded.mdx b/src/content/docs/adventure/platform/modded.mdx index 6e948e80a..6b5c3c7ef 100644 --- a/src/content/docs/adventure/platform/modded.mdx +++ b/src/content/docs/adventure/platform/modded.mdx @@ -20,11 +20,17 @@ Adventure facilities this through the `net.kyori:adventure-platform-mod-shared` A second variant, `net.kyori:adventure-platform-mod-shared-fabric-repack`, is also published. This variant should be used when your common code is managed by `fabric-loom`. -If you are building a Fabric-only or NeoForge-only mod, or do not care to use the platform API in shared code, -then you don't need to use this artifact explicitly. This is because both platforms depend on it transitively. +:::caution[Note] + These artifacts are for the common module on multi-platform mods. For specific platforms, take a look at the + [Fabric](/adventure/platform/fabric) or [NeoForge](/adventure/platform/neoforge) pages. If you are building a + Fabric-only or NeoForge-only mod, or do not care to use the platform API in shared code, then you don't need to use + this artifact explicitly. This is because both platforms depend on it transitively. +::: As with the rest of the Adventure projects, releases are distributed on Maven Central, and snapshots on Sonatype OSS: + + ```kotlin title="build.gradle.kts" replace @@ -81,6 +87,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.9-1.21.10 | 4.25.0 | 6.7.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 | diff --git a/src/utils/versions.ts b/src/utils/versions.ts index d3eb3f890..65f15bfa8 100644 --- a/src/utils/versions.ts +++ b/src/utils/versions.ts @@ -84,9 +84,9 @@ const userdevVersions: string[] = await fetchGitHubTags("PaperMC/paperweight"); export const LATEST_USERDEV_RELEASE = userdevVersions[0]; -export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9"; +export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.11"; export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC; -export const LATEST_ADVENTURE_API_RELEASE = "4.25.0"; +export const LATEST_ADVENTURE_API_RELEASE = "4.26.1"; export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1"; -export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0"; +export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.8.0"; export const LATEST_ANSI_RELEASE = "1.1.1";