You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@spamassassin.apache.org by Michael Parker <pa...@pobox.com> on 2011/05/14 07:20:35 UTC

Re: svn commit: r1102926 - /spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm

On May 13, 2011, at 6:37 PM, wtogami@apache.org wrote:

> Author: wtogami
> Date: Fri May 13 23:37:27 2011
> New Revision: 1102926
> 
> URL: http://svn.apache.org/viewvc?rev=1102926&view=rev
> Log:
> Prep 3.3.2-rc1
> 
> Modified:
>    spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm
> 
> Modified: spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm
> URL: http://svn.apache.org/viewvc/spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm?rev=1102926&r1=1102925&r2=1102926&view=diff
> ==============================================================================
> --- spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm (original)
> +++ spamassassin/branches/3.3/lib/Mail/SpamAssassin.pm Fri May 13 23:37:27 2011
> @@ -94,12 +94,13 @@ use vars qw{
> };
> 
> $VERSION = "3.003002";      # update after release (same format as perl $])
> -$IS_DEVEL_BUILD = 1;        # change for release versions
> +#$IS_DEVEL_BUILD = 1;        # change for release versions
> 
> # Used during the prerelease/release-candidate part of the official release
> # process. If you hacked up your SA, you should add a version_tag to your .cf
> # files; this variable should not be modified.
> -@EXTRA_VERSION = qw();
> +#@EXTRA_VERSION = qw();
> +@EXTRA_VERSION = "rc1";

That's not right.

the qw() is important there

@EXTRA_VERSION = qw(rc1);

Look back through the old checkins if you have questions.

Michael



> 
> @ISA = qw();
> 
> 
>