"The Info attribute is missing or invalid" error when uploading pluginFixed

i am trying to upload a plugin but i keep getting an error, this is my code

namespace Oxide.Plugins
{
    [Info("Perfect Repair", "Bruno Puccio", "1.0.0")]
    [Description("bla bla bla")]
    class PerfectRepair : RustPlugin
    {
        //code
    }
}
i removed a ' i had in the description and now it works just fine
Thanks for the report, should be fixed soon.
Fixed

Sorry, got to re-open this one.
I get the same message when uploading an update.
Plugin works fine on the server.

Also, when I release a new version on Github it seems to not update the plugin page.

namespace Oxide.Plugins
{
    [Info("PlayerAdministration", "ThibmoRozier", "1.3.16")]
    [Description("Allows server admins to moderate users using a GUI from within the game.")]
    public class PlayerAdministration : RustPlugin
    {
    }
}
That info attribute and description attribute are valid and I was able to upload it successfully.  That indicates something else in your plugin body (not specified above) is preventing the upload.

Merged post

It was the comment at the top of your file.

Incidentally both bugs are related, releases should sync for you now.

Neat, thanks.
So for future updates, move the contributors comment down?

Shouldn't matter where the comments are now.
All I am missing now is a "Awesome, thanks" button, so I'll just say thanks via this comment. :)
Locked automatically