Skip to content

Commit 4f5e41f

Browse files
committed
update to 26.1
1 parent 3aad74f commit 4f5e41f

6 files changed

Lines changed: 16 additions & 19 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: JDK Setup
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: 21
29+
java-version: 25
3030
distribution: 'temurin'
3131

3232
- name: Gradle Setup

build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ repositories {
2727

2828
dependencies {
2929
minecraft libs.mc
30-
mappings variantOf(libs.yarn) { classifier "v2" }
3130

32-
modImplementation libs.fl
33-
modImplementation libs.fapi
31+
implementation libs.fl
32+
implementation libs.fapi
3433
}
3534

3635
processResources {
@@ -57,13 +56,13 @@ processResources {
5756

5857
tasks.withType(JavaCompile).configureEach {
5958
it.options.encoding = "UTF-8"
60-
it.options.release = 21
59+
it.options.release = 25
6160
}
6261

6362
java {
6463
withSourcesJar()
65-
sourceCompatibility = JavaVersion.VERSION_21
66-
targetCompatibility = JavaVersion.VERSION_21
64+
sourceCompatibility = JavaVersion.VERSION_25
65+
targetCompatibility = JavaVersion.VERSION_25
6766
}
6867

6968

@@ -81,7 +80,7 @@ modrinth {
8180
token = "$System.env.MODRINTH_TOKEN"
8281
projectId = slug
8382
versionNumber = project.version
84-
uploadFile = remapJar
83+
uploadFile = jar
8584
gameVersions = compatibleVersions.split(", ").toList()
8685
loaders = compatibleLoaders.split(", ").toList()
8786
changelog = "$System.env.CHANGELOG"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ license=MIT
1818
# Mod Version
1919
modVersion=0.1.0
2020
# Branch Metadata
21-
branchName=fabric-1.21.8
22-
compatibleVersions=1.21.8
21+
branchName=fabric-26.1
22+
compatibleVersions=26.1
2323
compatibleLoaders=fabric

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

libs.versions.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
[versions]
2-
loom = "1.10.+"
2+
loom = "1.15-SNAPSHOT"
33
minotaur = "2.+"
44

5-
mc = "1.21.8"
6-
fl = "0.16.14"
7-
yarn = "1.21.8+build.1"
8-
fapi = "0.130.0+1.21.8"
5+
mc = "26.1-snapshot-9"
6+
fl = "0.18.4"
7+
fapi = "0.143.5+26.1"
98

109
[plugins]
11-
loom = { id = "fabric-loom", version.ref = "loom" }
10+
loom = { id = "net.fabricmc.fabric-loom", version.ref = "loom" }
1211
minotaur = { id = "com.modrinth.minotaur", version.ref = "minotaur" }
1312

1413
[libraries]
1514
mc = { group = "mojang", name = "minecraft", version.ref = "mc" }
1615
fl = { group = "net.fabricmc", name = "fabric-loader", version.ref = "fl" }
17-
yarn = { group = "net.fabricmc", name = "yarn", version.ref = "yarn" }
1816
fapi = { group = "net.fabricmc.fabric-api", name = "fabric-api", version.ref = "fapi" }

src/main/resources/mod_id.mixins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"required": true,
33
"minVersion": "0.8",
44
"package": "io.github.username.modid.mixin",
5-
"compatibilityLevel": "JAVA_21",
5+
"compatibilityLevel": "JAVA_25",
66
"mixins": [
77
],
88
"client": [

0 commit comments

Comments
 (0)