Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Edivad99 committed Nov 10, 2024
1 parent f687f3a commit f8cedce
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
id 'eclipse'
id 'idea'
id 'net.neoforged.gradle.userdev' version "$neo_gradle_version"
id 'se.bjurr.gitchangelog.git-changelog-gradle-plugin' version '2.1.2'
id 'me.modmuss50.mod-publish-plugin' version '0.6.2'
id 'se.bjurr.gitchangelog.git-changelog-gradle-plugin' version '3.0.2'
id 'me.modmuss50.mod-publish-plugin' version '0.7.4'
id 'com.diffplug.spotless' version '6.25.0'
}

Expand Down Expand Up @@ -236,13 +236,13 @@ def penultimateTag = { ->
}

tasks.register('makeChangelog', GitChangelogTask) {
fromRepo = projectDir.absolutePath.toString()
fromRevision = penultimateTag()
toRevision = 'HEAD'
file = file('CHANGELOG.md')
untaggedName = 'Next release'
templateContent = file('changelog.mustache').text
ignoreCommitsIfMessageMatches = '^.*Merge branch.*$'
fromRepo.set(projectDir.absolutePath.toString())
fromRevision.set(penultimateTag())
toRevision.set('HEAD')
file.set(file('CHANGELOG.md'));
untaggedName.set('Next release')
templateContent.set(file('changelog.mustache').text)
ignoreCommitsIfMessageMatches.set('^.*Merge branch.*$')
}

publishMods {
Expand Down

0 comments on commit f8cedce

Please sign in to comment.