Versioning¶
Enable semantic versioning for the current project.
More info here
Overview¶
- versioning
- semver
isEnabled: Property<Boolean>
// trueenabled(value: Boolean = true)
tagPrefix: Property<String>
//""
(empty string)semver(action: Action<SemverExtension>)
- semver
Configuration¶
Basic config¶
hubdle {
config {
versioning()
}
}
Advanced config¶
hubdle {
config {
versioning {
isEnabled.set(true)
tagPrefix.set("v")
}
}
}