Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 12, 2015
1 parent 1a16400 commit 67bab07
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

6.20 2015-09-13

6.19 2015-09-12
- Added code of conduct to Mojolicious::Guides::Contributing.
- Added ignore attribute to Mojo::UserAgent::CookieJar.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -43,7 +43,7 @@ has types => sub { Mojolicious::Types->new };
has validator => sub { Mojolicious::Validator->new };

our $CODENAME = 'Clinking Beer Mugs';
our $VERSION = '6.19';
our $VERSION = '6.20';

sub AUTOLOAD {
my $self = shift;
Expand Down
10 changes: 10 additions & 0 deletions thpod_coverage.t
@@ -0,0 +1,10 @@
use Mojo::Base -strict;

use Test::More;

plan skip_all => 'set TEST_POD to enable this test (developer only!)'
unless $ENV{TEST_POD};
plan skip_all => 'Test::Pod::Coverage 1.04+ required for this test!'
unless eval 'use Test::Pod::Coverage 1.04; 1';

all_pod_coverage_ok();

0 comments on commit 67bab07

Please sign in to comment.