Skip to content

Commit 0573a10

Browse files
authored
chore(deps): Update adventure versions (#714)
1 parent 4452d4a commit 0573a10

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

src/content/docs/adventure/platform/modded.mdx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,17 @@ Adventure facilities this through the `net.kyori:adventure-platform-mod-shared`
2020
A second variant, `net.kyori:adventure-platform-mod-shared-fabric-repack`, is also published. This variant should be used
2121
when your common code is managed by `fabric-loom`.
2222

23-
If you are building a Fabric-only or NeoForge-only mod, or do not care to use the platform API in shared code,
24-
then you don't need to use this artifact explicitly. This is because both platforms depend on it transitively.
23+
:::caution[Note]
24+
These artifacts are for the common module on multi-platform mods. For specific platforms, take a look at the
25+
[Fabric](/adventure/platform/fabric) or [NeoForge](/adventure/platform/neoforge) pages. If you are building a
26+
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
27+
this artifact explicitly. This is because both platforms depend on it transitively.
28+
:::
2529

2630
As with the rest of the Adventure projects, releases are distributed on Maven Central, and snapshots on Sonatype OSS:
2731

32+
33+
2834
<Tabs syncKey="build-system">
2935
<TabItem label="Gradle (Kotlin)">
3036
```kotlin title="build.gradle.kts" replace
@@ -81,6 +87,7 @@ Each major Minecraft release will require different platform versions. For older
8187

8288
| Minecraft Version | Adventure version | `adventure-platform-(mod-shared/fabric/neoforge)` version |
8389
|-------------------|-------------------|-----------------------------------------------------------|
90+
| 1.21.9-1.21.10 | 4.25.0 | 6.7.0 |
8491
| 1.21.6-1.21.8 | 4.24.0 | 6.6.0 |
8592
| 1.21.5 | 4.21.0 | 6.4.0 |
8693
| 1.21.2-1.21.4 | 4.20.0 | 6.3.0 |

src/utils/versions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ const userdevVersions: string[] = await fetchGitHubTags("PaperMC/paperweight");
8484

8585
export const LATEST_USERDEV_RELEASE = userdevVersions[0];
8686

87-
export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9";
87+
export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.11";
8888
export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC;
89-
export const LATEST_ADVENTURE_API_RELEASE = "4.25.0";
89+
export const LATEST_ADVENTURE_API_RELEASE = "4.26.1";
9090
export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1";
91-
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0";
91+
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.8.0";
9292
export const LATEST_ANSI_RELEASE = "1.1.1";

0 commit comments

Comments
 (0)