We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 246a369 commit 38bd8ceCopy full SHA for 38bd8ce
src/main/groovy/net/minecraftforge/gradleutils/changelog/ChangelogExtension.groovy
@@ -56,6 +56,21 @@ class ChangelogExtension {
56
this.task.configure { it.start.set marker }
57
}
58
59
+ @Deprecated(forRemoval = true, since = '2.4')
60
+ void fromTag(String tag) {
61
+ this.from(tag)
62
+ }
63
+
64
65
+ void fromCommit(String commit) {
66
+ this.from(commit)
67
68
69
70
+ void disableAutomaticPublicationRegistration() {
71
+ this.publishAll = false
72
73
74
void publish(MavenPublication publication) {
75
ChangelogUtils.setupChangelogGenerationForPublishing(this.project, publication)
76
0 commit comments