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:
Jason Penilla 2024-04-26 14:19:52 -07:00
parent 114dc611e0
commit e92795886c
No known key found for this signature in database
GPG key ID: 0E75A301420E48F8
2 changed files with 2 additions and 1 deletions

View file

@ -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(":")

View file

@ -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,
)