Skip to content

Commit

Permalink
update version number to 0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Feb 21, 2010
1 parent 5c10a23 commit b7b5d68
Show file tree
Hide file tree
Showing 37 changed files with 38 additions and 40 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
0.20 2010.02.21
Widen the right column and add ads.

0.19 2010.02.21
Change most of the UI to use div elements instead of table elements
Change the whole look of the web site
Expand Down
5 changes: 0 additions & 5 deletions README
Expand Up @@ -4,8 +4,6 @@ See the documentation of CPAN::Forum for details on the

************ TODO *********************

* Change the design of the website

* Allow the users to add 6 tags to the postings

* Create discussion group that does not belong to any specific CPAN package
Expand All @@ -18,7 +16,6 @@ See the documentation of CPAN::Forum for details on the

----------------------------------------


The longest threads
select count(*), thread from posts group by thread order by count desc limit 3;

Expand All @@ -34,8 +31,6 @@ select count(*), thread from posts group by thread order by count desc limit 3;
* Add to the daemon that will remove junk keys older than 24 hours or some other
configurable value.

* Setup daemon to be launched at boot time

* Record when a user last visited

==========================================
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;

our $VERSION = '0.19';
our $VERSION = '0.20';

use base 'CGI::Application';

Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Build.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::Build;
use warnings;
use strict;

our $VERSION = '0.19';
our $VERSION = '0.20';

use File::Copy;
use File::Path;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/CPANRatings.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::CPANRatings;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Authors.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Authors;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Configure.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Configure;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Groups.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Groups;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Junk.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
#use Digest::SHA qw(sha1_base64);
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Posts.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Posts;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Subscriptions.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Subscriptions;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Subscriptions_all.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Subscriptions_all;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Subscriptions_pauseid.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Subscriptions_pauseid;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use base 'CPAN::Forum::DBI';
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Tags.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DB::Tags;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use base 'CPAN::Forum::DBI';
use Carp qw();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DB/Users.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp;
use Digest::SHA qw(sha1_base64);
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/DBI.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::DBI;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Carp qw();
use Data::Dumper ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Daemon.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008;

use Moose;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DBI;
use CPAN::Forum::DB::Posts;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Handler.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::Handler;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Apache2::Const-compile => qw(OK);
use Apache2::RequestRec ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/INC.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::INC;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::Markup;
use CPAN::Forum::DBI;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Markup.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::Markup;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CGI qw();
use Parse::RecDescent;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Pod.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::Pod;

use Moose;

our $VERSION = '0.19';
our $VERSION = '0.20';

extends qw(Pod::Simple::HTML);

Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Populate.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::Populate;

use Moose;

our $VERSION = '0.19';
our $VERSION = '0.20';

use autodie;
use CPAN::Mini ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Admin.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Admin;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Users ();
use CPAN::Forum::DB::Configure ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Author.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Author;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Authors ();
use CPAN::Forum::DB::Groups ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Dist.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Dist;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Groups;
use CPAN::Forum::DB::Tags;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Login.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Login;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use List::MoreUtils qw(none);
use Digest::MD5 qw(md5_base64);
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Notify.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Notify;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use XML::RSS::SimpleGen;
use XML::Atom::SimpleFeed;
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Other.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Other;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DBI ();
use CPAN::Forum::DB::Posts ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Posts.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Posts;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Groups ();
use CPAN::Forum::DB::Posts ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Search.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Search;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Posts ();
use CPAN::Forum::DB::Groups ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Subscriptions.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Subscriptions;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Users ();
use CPAN::Forum::DB::Groups ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Tags.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Tags;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Tags ();

Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Threads.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Threads;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Posts ();
use CPAN::Forum::Tools ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Update.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Update;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Groups ();
use CPAN::Forum::DB::Tags ();
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/UserAccounts.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Digest::SHA qw(sha1_base64);

Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/RM/Users.pm
Expand Up @@ -2,7 +2,7 @@ package CPAN::Forum::RM::Users;
use strict;
use warnings;

our $VERSION = '0.19';
our $VERSION = '0.20';

use CPAN::Forum::DB::Users ();

Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/Forum/Tools.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.008;

our $VERSION = '0.19';
our $VERSION = '0.20';

use Mail::Sendmail qw(sendmail);

Expand Down

0 comments on commit b7b5d68

Please sign in to comment.