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 dd29b28 commit be09839
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 @@ -287,7 +287,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 @@ -16,7 +16,7 @@ Create scripts for handling operations in Integrated Dynamics.
[[dependencies.integratedscripting]]
modId="cyclopscore"
type="required"
versionRange="[1.19.11,)"
versionRange="[1.20.0,)"
ordering="NONE"
side="BOTH"
[[dependencies.integratedscripting]]
Expand Down

0 comments on commit be09839

Please sign in to comment.