I’ve got a number of plug-in’s hosted on the wordpress.org svn server … with the immenent release of 3.1, I would like to update the “Tested up to” meta data.
There will be no functional changes to the code, just the meta data.
Is it necessary to change the revision number for such a trivial change?
I would only increase the version number if users needed to download the plugin again. The “Tested up to” variable is not used when the plugin is installed, only when people want to install it or want to upgrade. In that case, the information comes from the server anyway, so you don’t need to force a new download of your plugin.
Of course, if your
readme.txt
in thetrunk
directory hasStable tag
indicator, you should update thereadme.txt
in the correcttags
subdirectory, otherwise it will get ignored. There is no problem updating a file in thetags
directory and not creating a new version, for Subversion it’s a normal directory just like all others, it’s only a convention to use it for tagged historical releases.I think the other answers have thoroughly explained the arguments in favor of bumping the
Tested up to
attribute, and I don’t see anything wrong with them. Since no one has mentioned any reasons not to do this, though, I figured I’d play devil’s advocate 😉My advice would be to relax and leave the tags alone. Just cast your individual vote for “it works” at the repo page — after a round of testing, of course — and leave it at that. If you’re really that concerned about your plugin appearing to be active, then spend your time working on new releases with bug fixes, security/performance/UI improvements and useful new features; don’t waste time worrying about what other people think or how many downloads your plugin got last week.
Well if you’re just updating the readme then I see no reason to increase the version number. If you’re just using the trunk you can do a quick commit to change that one thing and noone will really notice if you’re using tags I think you will need to create a new tag (not 100% not that well versed with svn).
I think it’s safe to say this is a matter of personal choice. Instead of a full version update (e.g. 1.0 to 2.0) you might consider making it a 1.1 release.