Skip to content

Commit be09839

Browse files
committed
Fix Modrinth changelogs not being set on release
1 parent dd29b28 commit be09839

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ modrinth {
287287
gameVersions = [ project.minecraft_version ]
288288
changelog = ""
289289
if (new File("resources/changelog/${project.version}.txt").exists()) {
290-
changelog = new File("resources/changelog/${project.version}.txt").text
290+
changelog = provider { file("resources/changelog/${project.version}.txt").getText() }
291291
}
292292
dependencies { // A special DSL for creating dependencies
293293
required.project "Z9DM0LJ4" // Cyclops Core

src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Create scripts for handling operations in Integrated Dynamics.
1616
[[dependencies.integratedscripting]]
1717
modId="cyclopscore"
1818
type="required"
19-
versionRange="[1.19.11,)"
19+
versionRange="[1.20.0,)"
2020
ordering="NONE"
2121
side="BOTH"
2222
[[dependencies.integratedscripting]]

0 commit comments

Comments
 (0)