diff --git a/gradle.properties b/gradle.properties index e8269dd5f..4e953d72c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ group = org.quiltmc description = The mod loading component of Quilt url = https://github.com/quiltmc/quilt-loader # Don't forget to change this in QuiltLoaderImpl as well -quilt_loader = 0.26.0-beta.3 +quilt_loader = 0.26.0-beta.4 # Fabric & Quilt Libraries asm = 9.6 diff --git a/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java b/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java index 8dbaad03c..cd3da5428 100644 --- a/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java +++ b/src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java @@ -132,7 +132,7 @@ public final class QuiltLoaderImpl { public static final int ASM_VERSION = Opcodes.ASM9; - public static final String VERSION = "0.26.0-beta.3"; + public static final String VERSION = "0.26.0-beta.4"; public static final String MOD_ID = "quilt_loader"; public static final String DEFAULT_MODS_DIR = "mods"; public static final String DEFAULT_CACHE_DIR = ".cache"; diff --git a/src/main/resources/changelog/0.26.0.txt b/src/main/resources/changelog/0.26.0.txt index dfe158589..24da36cd7 100644 --- a/src/main/resources/changelog/0.26.0.txt +++ b/src/main/resources/changelog/0.26.0.txt @@ -13,7 +13,8 @@ Bug Fixes: - [#429] Fix global cache being in the wrong location - [#426] Preserve order of contributors in the quilt.mod.json - [#427] Fix an edge case where the same person listed as author and contributor to a Fabric mod was listed twice in the Quilt contributors. - +- [#430] Fix the Knot classloader's allowlist + - Resolves an issue where Mixins were unable to apply on Minecraft versions between 1.7 and 1.8.9 Changes from updating Fabric Loader from 0.15.7 to 0.15.10: