So WordPress just released [1.5.1.1][1] to fix the [RSS problem][2] which has bitten me badly too. The trouble is that I am getting sick of their manual [upgrade][3] steps – backup, overwrite, restore, etc. etc. when the only changes have been to the core files!
I wonder why they can’t release very minor releases (e.g. 1.5.1.1) as *patches*. Even minor releases (e.g. 1.5.1) can be released as patches – the database changes can be handled using the upgrade script which can itself be available as a patch.
Granted that patch is available only on Unix systems and that also on systems where you have shell access. But again, the general release is always available as a full download anyway, right?
Take this bugfix release for example. [Here is the patch file][4] I created for the 1.5.1.1 release. To upgrade all you have to do is to change directory to the wordpress root, and run `patch -p1 < wordpress-1.5.1.1.patch`. That is it! You have upgraded!
[1]: http://wordpress.org/development/2005/05/one-five-one/
[2]: http://fernando.dubtribe.com/archives/2005/05/10/solution-to-wp151-rss-errors/
[3]: http://codex.wordpress.org/Upgrading_WordPress
[4]: http://www.sandipb.net/downloads/wordpress-1.5.1.1.patch
