Skip to content

Commit 3aa79f6

Browse files
authored
Update default Mixin version to 0.16.5 (#374)
1 parent e392465 commit 3aa79f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mergetool_version=2.0.0
77
accesstransformers_version=11.0.2
88
eventbus_version=8.0.5
99
asm_version=9.7
10-
mixin_version=0.16.4+mixin.0.8.7
10+
mixin_version=0.16.5+mixin.0.8.7
1111
terminalconsoleappender_version=1.3.0
1212
nightconfig_version=3.8.0
1313
jetbrains_annotations_version=26.0.2

loader/src/main/java/net/neoforged/fml/loading/mixin/MixinFacade.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private void gotoPhase(MixinEnvironment.Phase phase) {
8686
// Increment to break compatibility; during a BC window, this should be set to the latest version. This is _not_ set
8787
// to COMPATIBILITY_LATEST, so that if mixin is bumped past a BC it does not break mods.
8888
@VisibleForTesting
89-
public static final int DEFAULT_BEHAVIOUR_VERSION = FabricUtil.COMPATIBILITY_0_14_0;
89+
public static final int DEFAULT_BEHAVIOUR_VERSION = FabricUtil.COMPATIBILITY_0_16_5;
9090
@VisibleForTesting
9191
public static final ArtifactVersion HIGHEST_MIXIN_VERSION;
9292
@VisibleForTesting

loader/src/test/java/net/neoforged/fml/loading/MixinConfigTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void testDuplicateMixinConfigs() throws Exception {
197197
void testRequestedMixinBehaviorIsValid() throws Exception {
198198
installation.setupProductionClient();
199199
installation.buildModJar("mixin-test.jar")
200-
.withTestmodModsToml(modsToml -> modsToml.addMixinConfig("test.mixins.json", "0.14.0"))
200+
.withTestmodModsToml(modsToml -> modsToml.addMixinConfig("test.mixins.json", "0.16.5"))
201201
.addTextFile("test.mixins.json", "{}")
202202
.build();
203203

0 commit comments

Comments
 (0)