Skip to content

Commit

Permalink
Increment to v0.15.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jun 19, 2013
1 parent 083f0b3 commit e71cd26
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension PGXN::Manager

0.15.1

0.15.0 2013-06-19T06:18:45Z
- Silenced Net::Twitter::Lite warnings by disabling the legacy lists
API (which we don't use anyway).
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
PGXN/Manager version 0.15.0
PGXN/Manager version 0.15.1
===========================

This application provides a Web interface and REST API for extension owners to
Expand Down
2 changes: 1 addition & 1 deletion bin/check_mirrors
Expand Up @@ -11,7 +11,7 @@ use File::Basename;
use File::Spec;
use Getopt::Long;

BEGIN { our $VERSION = v0.15.0 }
BEGIN { our $VERSION = v0.15.1 }

Getopt::Long::Configure( qw(bundling) );

Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager.pm
Expand Up @@ -18,7 +18,7 @@ use Net::Twitter::Lite::WithAPIv1_1;
use Email::Sender::Simple;
use namespace::autoclean;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

=head1 Name
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Controller.pm
Expand Up @@ -16,7 +16,7 @@ use Data::Validate::URI 'is_uri';
use Try::Tiny;
use namespace::autoclean;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

Template::Declare->init( dispatch_to => ['PGXN::Manager::Templates'] );

Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Distribution.pm
Expand Up @@ -18,7 +18,7 @@ use Digest::SHA1;
use PGXN::Meta::Validator v0.12.0;
use namespace::autoclean;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

my $TMPDIR = PGXN::Manager->new->config->{tmpdir}
|| File::Spec->catdir(File::Spec->tmpdir, 'pgxn');
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Locale.pm
Expand Up @@ -5,7 +5,7 @@ use utf8;
use parent 'Locale::Maketext';
use I18N::LangTags::Detect;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

# Allow unknown phrases to just pass-through.
our %Lexicon = (
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Locale/en.pm
Expand Up @@ -4,7 +4,7 @@ use 5.10.0;
use utf8;
use parent 'PGXN::Manager::Locale';

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

our %Lexicon = (
);
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Locale/fr.pm
Expand Up @@ -4,7 +4,7 @@ use 5.10.0;
use utf8;
use parent 'PGXN::Manager::Locale';

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

our %Lexicon = (
listcomma => ',',
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Maint.pm
Expand Up @@ -9,7 +9,7 @@ use File::Basename qw(dirname basename);
use Carp;
use namespace::autoclean;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

has verbosity => (is => 'rw', required => 1, isa => 'Int', default => 0);
has workdir => (is => 'rw', required => 0, isa => 'Str', lazy => 1, default => sub {
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Request.pm
Expand Up @@ -10,7 +10,7 @@ use HTTP::Body '1.08'; # required for proper upload mime type detection.
use namespace::autoclean;
use Encode;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

my $CHECK = Encode::FB_CROAK | Encode::LEAVE_SRC;
my $script_name_header = PGXN::Manager->config->{uri_script_name_key} || 'SCRIPT_NAME';
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Router.pm
Expand Up @@ -9,7 +9,7 @@ use Plack::Session::Store::File;
use PGXN::Manager::Controller;
use PGXN::Manager;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

sub app {
builder {
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Manager/Templates.pm
Expand Up @@ -7,7 +7,7 @@ use Template::Declare::Tags;
use PGXN::Manager;
use PGXN::Manager::Locale;

our $VERSION = v0.15.0;
our $VERSION = v0.15.1;

my $l = PGXN::Manager::Locale->get_handle('en');
sub T {
Expand Down

0 comments on commit e71cd26

Please sign in to comment.