diff --git a/CHANGELOG.md b/CHANGELOG.md index 6454abc7b..b970e938b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,16 @@ _LithiumVersion_ is automatically replaced with the lithium version, e.g. 0.14.5 Everything above the line is ignored and not included in the changelog. Everything below will be in the changelog on GitHub, Modrinth and CurseForge. ---------- -Lithium _LithiumVersion_ for Minecraft _MCVersion_ adds many new features. +Lithium _LithiumVersion_ for Minecraft _MCVersion_ includes a new optimization, a bugfix and improves mod compatibility. Make sure to take a backup of your world before using the mod and please report any bugs and mod compatibility issues at the [issue tracker](https://github.com/CaffeineMC/lithium-fabric/issues). You can check the [description of each optimization](https://github.com/CaffeineMC/lithium/blob/_ReleaseTag_/lithium-mixin-config.md) and how to disable it when encountering a problem. ## Additions -- Fast-path exit end portal search by counting nearby bedrock blocks. Reduces lag when placing the last end crystal when respawning the ender dragon. +- Fast-path exit end portal search by counting nearby bedrock blocks. Reduces lag when placing the last end crystal when respawning the ender dragon by 97%. +- Debug option for detecting invalid chunk data packets ## Changes -- Many changes +- Use worlds for thread tests instead of minecraft server to improve compatibility with the worldthreader mod ## Fixes -- No fixes \ No newline at end of file +- Set default return value in LithiumHashPalette copy \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index e71c912e7..c99ec8d51 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,7 +18,7 @@ val FABRIC_API_VERSION by extra { "0.110.5+1.21.4" } val PARCHMENT_VERSION by extra { null } // https://semver.org/ -val MOD_VERSION by extra { "0.14.7" } +val MOD_VERSION by extra { "0.14.8" } allprojects { apply(plugin = "java")