Skip to content

Commit

Permalink
Changelog & Release 0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexIIL committed Nov 13, 2024
1 parent b03fcd6 commit 017a253
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.27.0-beta.1
quilt_loader = 0.27.0

# Fabric & Quilt Libraries
asm = 9.7.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/quiltmc/loader/impl/QuiltLoaderImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public final class QuiltLoaderImpl {

public static final int ASM_VERSION = Opcodes.ASM9;

public static final String VERSION = "0.27.0-beta.1";
public static final String VERSION = "0.27.0";
public static final String MOD_ID = "quilt_loader";
public static final String DEFAULT_MODS_DIR = "mods";
public static final String DEFAULT_CACHE_DIR = ".cache";
Expand Down
20 changes: 20 additions & 0 deletions src/main/resources/changelog/0.27.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Changes:

- [#432] Switch from tiny-remapper to mapping-io.
- Removed 3 older libraries from being shipped with quilt:
- `tiny-mappings-parser`
- `tiny-remapper`
- `access-widener`
- [#329] Added support for quilt.mod.json5 files.
- This allows mod developers to have a commented mod json file in development.
- These are rejected at runtime, outside a development environment: mods using them will need to turn them into regular json files during build time.
- [#453] Optimised boot times when using regular fabric api on versions after 1.19.3 by not copying the whole minecraft jar to a new file.

Bug Fixes:

- Fixed a bug where an invalid mod icon caused the local gui process to crash.

Changes from updating Fabric Loader from 0.16.4 to 0.16.7:

- Updated ASM from 9.6 to 9.7.1
- This means we now support up to Java 24.

0 comments on commit 017a253

Please sign in to comment.