Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.11.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 23e1f2f..4740f14 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension App::CPAN::Fresh

+0.11  Fri Nov  9 09:12:21 PST 2012
+        - Support v-string versions
+
 0.10  Wed Feb 16 10:15:17 PST 2011
         - Support -TRIAL releases
  • Loading branch information
miyagawa committed Nov 9, 2012
1 parent 5436e3a commit d9ba892
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension App::CPAN::Fresh

0.11 Fri Nov 9 09:12:21 PST 2012
- Support v-string versions

0.10 Wed Feb 16 10:15:17 PST 2011
- Support -TRIAL releases

Expand Down
4 changes: 2 additions & 2 deletions lib/App/CPAN/Fresh.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package App::CPAN::Fresh;

use strict;
use 5.008_001;
our $VERSION = '0.10';
our $VERSION = '0.11';

use base qw(App::Cmd::Simple);

Expand Down Expand Up @@ -147,7 +147,7 @@ sub parse_entry {
return;
}

if ($body =~ /^([\w\-]+) ([0-9\._]*(?:-TRIAL)?) by (.+?) - <a.*href="(http:.*?\.tar\.gz)"/) {
if ($body =~ /^([\w\-]+) (v?[0-9\._]*(?:-TRIAL)?) by (.+?) - <a.*href="(http:.*?\.tar\.gz)"/) {
return {
dist => $1,
version => $2,
Expand Down

0 comments on commit d9ba892

Please sign in to comment.