Skip to content

Commit 78b39bc

Browse files
authored
feat(adventure): update maven repository and modded history version (#673)
* feat(adventure): update maven repository and modded history version Took 10 minutes * fix: update supported version Co-authored-by: Jason Penilla <[email protected]> Took 7 minutes
1 parent aa95bdf commit 78b39bc

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce
3030
```kotlin title="build.gradle.kts" replace
3131
repositories {
3232
// for development builds
33-
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
34-
name = "sonatype-oss-snapshots1"
33+
maven(url = "https://central.sonatype.com/repository/maven-snapshots/") {
34+
name = "central-snapshots"
3535
mavenContent { snapshotsOnly() }
3636
}
3737
// for releases
@@ -52,8 +52,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce
5252
repositories {
5353
// for development builds
5454
maven {
55-
name = 'sonatype-oss-snapshots1'
56-
url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
55+
name = 'central-snapshots'
56+
url = 'https://central.sonatype.com/repository/maven-snapshots/'
5757
mavenContent { snapshotsOnly() }
5858
}
5959
// for releases
@@ -81,6 +81,8 @@ Each major Minecraft release will require different platform versions. For older
8181

8282
| Minecraft Version | Adventure version | `adventure-platform-(mod-shared/fabric/neoforge)` version |
8383
|-------------------|-------------------|-----------------------------------------------------------|
84+
| 1.21.6-1.21.8 | 4.24.0 | 6.6.0 |
85+
| 1.21.5 | 4.21.0 | 6.4.0 |
8486
| 1.21.2-1.21.4 | 4.20.0 | 6.3.0 |
8587
| 1.21-1.21.1 | 4.17.0 | 6.0.0 |
8688

src/utils/versions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@ export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9";
8888
export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC;
8989
export const LATEST_ADVENTURE_API_RELEASE = "4.25.0";
9090
export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1";
91-
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.5.1";
91+
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0";
9292
export const LATEST_ANSI_RELEASE = "1.1.1";

0 commit comments

Comments
 (0)