Skip to content

Commit

Permalink
Fix Modrinth changelogs not being set on release
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Aug 18, 2024
1 parent 381803a commit 1f8b6e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ modrinth {
gameVersions = [ project.minecraft_version ]
changelog = ""
if (new File("resources/changelog/${project.version}.txt").exists()) {
changelog = new File("resources/changelog/${project.version}.txt").text
changelog = provider { file("resources/changelog/${project.version}.txt").getText() }
}
dependencies { // A special DSL for creating dependencies
required.project "Z9DM0LJ4" // Cyclops Core
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ An evil mod for Minecraft.
[[dependencies.evilcraft]]
modId="cyclopscore"
type="required"
versionRange="[1.19.11,)"
versionRange="[1.20.0,)"
ordering="NONE"
side="BOTH"
[[dependencies.evilcraft]]
Expand Down

0 comments on commit 1f8b6e4

Please sign in to comment.