Skip to content

Commit

Permalink
Fix gradle shadow
Browse files Browse the repository at this point in the history
Crash is not exclusive to 1.20.5
  • Loading branch information
DrexHD committed Apr 24, 2024
1 parent 1158aab commit 77d9367
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
}

Expand Down Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 77d9367

Please sign in to comment.