diff --git a/CHANGELOG.md b/CHANGELOG.md index 3498500..8eef0c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.5.4] - 2024-04-24 +### Fixed +- Crash on startup + ## [1.5.3] - 2024-04-22 ### Added - Squaremap support diff --git a/build.gradle b/build.gradle index caed115..f55f1e7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'fabric-loom' version '1.6-SNAPSHOT' - id 'com.github.johnrengelman.shadow' version '7.1.2' + id 'io.github.goooler.shadow' version '8.1.7' id 'maven-publish' } @@ -31,7 +31,7 @@ dependencies { modImplementation include("eu.pb4:placeholder-api:${project.placeholder_api_version}") modImplementation include("eu.pb4:player-data-api:${project.player_data_api_version}") modImplementation include("xyz.nucleoid:server-translations-api:${project.translations_version}") - implementation include("org.spongepowered:configurate-hocon:${project.configurate_hocon_version}") + implementation shadow("org.spongepowered:configurate-hocon:${project.configurate_hocon_version}") // Mod compat modCompileOnly "maven.modrinth:styled-chat:${project.styled_chat_version}" diff --git a/gradle.properties b/gradle.properties index d773c7e..ea77684 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx1G minecraft_version=1.20.1 loader_version=0.15.10 # Mod Properties -mod_version=1.5.3 +mod_version=1.5.4 maven_group=me.drex archives_base_name=vanish # Dependencies diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 2185724..79e8ccd 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -31,7 +31,7 @@ "vanish.mixins.json" ], "depends": { - "fabricloader": ">=0.15.6", + "fabricloader": ">=0.15.10", "fabric-api": "*", "java": ">=17", "minecraft": ">=1.20 <=1.20.1"