I’m maintaining a package that used to be available in two flavours, Sublime Text versions 2 and 3. In the Package Control channel, this is how the distinction was made:
{
"releases": [
{
"sublime_text": "<3103",
"tags": "st2-"
},
{
"sublime_text": ">=3103",
"tags": "st3-"
}
]
}
For many reasons, I would love to leave this behind. The st2 version-branch is no longer maintained, the old st3 version-branch could simply omit the prefix. How would this work? Should I simple create a new tag for the latest version without the prefix, then change the Package Control channel entry?
Would this be sufficient?
{
"sublime_text": ">=3103",
"tags": true
}
Thanks in advance for any pointers into the right direction.