I am in process of rewriting the a plugin, Robot Framework Assistant, the new version is not anymore compatible with the Sublime Text 2. In practice the version 1.X.X is compatible with Sublime Text 2 and Sublime Text 3, but the version 2.X.X is only compatible with Sublime Text 3.
The package control documentation did suggest using the tags key was way to go with this. So I did add tag st2-1.2.3 to the repository and configured the messages.json to contain correct information. In few commits because of copy/paste errors after the tag was set.
Then I did go and updated the package_control_channel to match the release plan:
{
"name": "Robot Framework Assistant",
"details": "https://github.com/andriyko/sublime-robot-framework-assistant",
"releases": [
{
"sublime_text": "*",
"tags": "st2-"
},
{
"sublime_text": ">=3000",
"tags": "st3-"
}
]
},
But now the package control robot framework assistant page says that it has not seen the plugin for few days. So it is cleat that I did made a mistake in the process, but just can not figure out where the error was made. Could somebody provide some pointers how I can this working?