If you add this to your functions.php it removes the WordPress version number from the RSS feed and the header.
function remove_wordpress_ver() { return ''; } add_filter('the_generator', 'remove_wordpress_ver', 999);