You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/09/22 04:15:56 UTC

svn commit: rev 47018 - in spamassassin/branches/3.0: . lib/Mail

Author: felicity
Date: Tue Sep 21 19:15:55 2004
New Revision: 47018

Modified:
   spamassassin/branches/3.0/Changes
   spamassassin/branches/3.0/lib/Mail/SpamAssassin.pm
Log:
prep 3.0.0 release

Modified: spamassassin/branches/3.0/Changes
==============================================================================
--- spamassassin/branches/3.0/Changes	(original)
+++ spamassassin/branches/3.0/Changes	Tue Sep 21 19:15:55 2004
@@ -1,4 +1,48 @@
 ------------------------------------------------------------------------
+r47002 | quinlan | 2004-09-21 21:43:03 +0000 (Tue, 21 Sep 2004) | 2 lines
+
+bug 3798: remove ninja* images
+
+------------------------------------------------------------------------
+r46967 | quinlan | 2004-09-21 07:23:40 +0000 (Tue, 21 Sep 2004) | 2 lines
+
+new logo
+
+------------------------------------------------------------------------
+r46960 | quinlan | 2004-09-21 05:56:38 +0000 (Tue, 21 Sep 2004) | 2 lines
+
+bug 3794: add some defined() checks for incomplete DNS responses
+
+------------------------------------------------------------------------
+r46138 | duncf | 2004-09-15 23:05:17 +0000 (Wed, 15 Sep 2004) | 1 line
+
+Minor typo in Mail::SpamAssassin::Conf man
+------------------------------------------------------------------------
+r46071 | felicity | 2004-09-15 03:08:35 +0000 (Wed, 15 Sep 2004) | 1 line
+
+add documentation about Plugin::dbg having to be called via package name as it's not available in the plugin package namespace
+------------------------------------------------------------------------
+r46068 | felicity | 2004-09-15 02:46:09 +0000 (Wed, 15 Sep 2004) | 1 line
+
+added documentation for the standard arguments passed to plugins of different types
+------------------------------------------------------------------------
+r46030 | felicity | 2004-09-14 18:28:50 +0000 (Tue, 14 Sep 2004) | 2 lines
+
+Create 3.0 (stable) branch, open up trunk for 3.1 (development) operations.
+
+------------------------------------------------------------------------
+r46006 | felicity | 2004-09-14 03:02:01 +0000 (Tue, 14 Sep 2004) | 1 line
+
+prepped rc6
+------------------------------------------------------------------------
+r46005 | felicity | 2004-09-14 01:23:14 +0000 (Tue, 14 Sep 2004) | 1 line
+
+make sure the output files have the correct group and permissions
+------------------------------------------------------------------------
+r46003 | felicity | 2004-09-13 23:41:20 +0000 (Mon, 13 Sep 2004) | 1 line
+
+prep rc5 release
+------------------------------------------------------------------------
 r45998 | quinlan | 2004-09-13 19:34:52 +0000 (Mon, 13 Sep 2004) | 2 lines
 
 bug 3768: add simple Debian packaging files

Modified: spamassassin/branches/3.0/lib/Mail/SpamAssassin.pm
==============================================================================
--- spamassassin/branches/3.0/lib/Mail/SpamAssassin.pm	(original)
+++ spamassassin/branches/3.0/lib/Mail/SpamAssassin.pm	Tue Sep 21 19:15:55 2004
@@ -99,7 +99,7 @@
 };
 
 $VERSION = "3.000000";      # update after release (same format as perl $])
-$IS_DEVEL_BUILD = 1;        # change for release versions
+$IS_DEVEL_BUILD = 0;        # change for release versions
 
 @ISA = qw();
 
@@ -108,7 +108,7 @@
 
 # If you hacked up your SA, you should add a version_tag to you .cf files.
 # This variable should not be modified directly.
-@EXTRA_VERSION = qw(rc6);
+@EXTRA_VERSION = qw();
 if (defined $IS_DEVEL_BUILD && $IS_DEVEL_BUILD) {
   push(@EXTRA_VERSION, ( 'r' . qw{$LastChangedRevision$ updated by SVN}[1] ));
 }