Bump dev bundle revision to 4
It's important that 1.20.5 plugins include the mappings metadata in their manifests. For this reason we are bumping the dev bundle revision without any changes to the format.
This commit is contained in:
parent
114dc611e0
commit
e92795886c
2 changed files with 2 additions and 1 deletions
|
@ -372,7 +372,7 @@ abstract class GenerateDevBundle : DefaultTask() {
|
|||
const val mojangMappedPaperclipFileName = "paperclip-$DEOBF_NAMESPACE.jar"
|
||||
|
||||
// Should be bumped when the dev bundle config/contents changes in a way which will require users to update paperweight
|
||||
const val currentDataVersion = 3
|
||||
const val currentDataVersion = 4
|
||||
|
||||
fun createCoordinatesFor(project: Project): String =
|
||||
sequenceOf(project.group, project.name.lowercase(Locale.ENGLISH), "userdev-" + project.version).joinToString(":")
|
||||
|
|
|
@ -31,6 +31,7 @@ import kotlin.io.path.*
|
|||
|
||||
private val supported = mapOf(
|
||||
2 to DevBundleV2.Config::class, // 1.17.1
|
||||
3 to GenerateDevBundle.DevBundleConfig::class,
|
||||
GenerateDevBundle.currentDataVersion to GenerateDevBundle.DevBundleConfig::class,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue