Skip to content

Commit

Permalink
Bump version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Sep 14, 2015
1 parent 54972a6 commit 55094e5
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion bin/tidyall
Expand Up @@ -8,7 +8,7 @@ use Code::TidyAll::Util qw(can_load dirname rel2abs);
use strict;
use warnings;

our $VERSION = '0.30';
our $VERSION = '0.31';

my $usage = '
Usage: tidyall [options] [file] ...
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll.pm
Expand Up @@ -19,7 +19,7 @@ use Try::Tiny;
use strict;
use warnings;

our $VERSION = '0.30';
our $VERSION = '0.31';

sub default_conf_names { ( 'tidyall.ini', '.tidyallrc' ) }

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Cache.pm
Expand Up @@ -5,7 +5,7 @@ use Code::TidyAll::Util qw(dirname mkpath);
use File::Slurp::Tiny qw(read_file write_file);
use Moo;

our $VERSION = '0.30';
our $VERSION = '0.31';

has 'cache_dir' => ( is => 'ro', required => 1 );

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/CacheModel.pm
Expand Up @@ -4,7 +4,7 @@ use Digest::SHA qw(sha1_hex);
use File::Slurp::Tiny qw(read_file);
use Moo;

our $VERSION = '0.30';
our $VERSION = '0.31';

# todo, type checking?

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/CacheModel/Shared.pm
Expand Up @@ -3,7 +3,7 @@ package Code::TidyAll::CacheModel::Shared;
use Moo;
extends 'Code::TidyAll::CacheModel';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cache_key {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Config/INI/Reader.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use base qw(Config::INI::Reader);

our $VERSION = '0.30';
our $VERSION = '0.31';

sub set_value {
my ( $self, $name, $value ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Git/Precommit.pm
Expand Up @@ -11,7 +11,7 @@ use IPC::System::Simple qw(capturex run);
use Moo;
use Try::Tiny;

our $VERSION = '0.30';
our $VERSION = '0.31';

# Public
has 'conf_name' => ( is => 'ro' );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Git/Prereceive.pm
Expand Up @@ -9,7 +9,7 @@ use IPC::System::Simple qw(capturex run);
use Moo;
use Try::Tiny;

our $VERSION = '0.30';
our $VERSION = '0.31';

# Public
has 'allow_repeated_push' => ( is => 'ro', default => 3 );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Git/Util.pm
Expand Up @@ -7,7 +7,7 @@ use strict;
use warnings;
use base qw(Exporter);

our $VERSION = '0.30';
our $VERSION = '0.31';

our @EXPORT_OK = qw(git_uncommitted_files);

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin.pm
Expand Up @@ -6,7 +6,7 @@ use File::Slurp::Tiny qw(read_file write_file);
use Scalar::Util qw(weaken);
use Moo;

our $VERSION = '0.30';
our $VERSION = '0.31';

# External
has 'argv' => ( is => 'ro', default => q{} );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/CSSUnminifier.pm
Expand Up @@ -4,7 +4,7 @@ use IPC::System::Simple qw(run);
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'cssunminifier'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/JSBeautify.pm
Expand Up @@ -6,7 +6,7 @@ use Moo;
use Try::Tiny;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'js-beautify'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/JSHint.pm
Expand Up @@ -6,7 +6,7 @@ use IPC::Run3 qw(run3);
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub validate_params {
my ( $self, $params ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/JSLint.pm
Expand Up @@ -4,7 +4,7 @@ use IPC::Run3 qw(run3);
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'jslint'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/JSON.pm
Expand Up @@ -6,7 +6,7 @@ use warnings;
use JSON::MaybeXS ();
use Moo;

our $VERSION = '0.30';
our $VERSION = '0.31';

extends 'Code::TidyAll::Plugin';

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/MasonTidy.pm
Expand Up @@ -6,7 +6,7 @@ use Moo;
use Text::ParseWords qw(shellwords);
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'masontidy'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm
Expand Up @@ -4,7 +4,7 @@ use IPC::Run3;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'phpcs'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PerlCritic.pm
Expand Up @@ -4,7 +4,7 @@ use IPC::Run3 qw(run3);
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub _build_cmd {'perlcritic'}

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PerlTidy.pm
Expand Up @@ -5,7 +5,7 @@ use Perl::Tidy;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub transform_source {
my ( $self, $source ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PerlTidySweet.pm
Expand Up @@ -5,7 +5,7 @@ use Perl::Tidy::Sweetened 1.00;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub transform_source {
my ( $self, $source ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PodChecker.pm
Expand Up @@ -4,7 +4,7 @@ use Pod::Checker;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

has 'warnings' => ( is => 'ro' );

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PodSpell.pm
Expand Up @@ -9,7 +9,7 @@ use Moo;
use Text::ParseWords qw(shellwords);
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

has 'ispell_argv' => ( is => 'ro', default => q{} );
has 'ispell_cmd' => ( is => 'ro', default => 'ispell' );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/PodTidy.pm
Expand Up @@ -5,7 +5,7 @@ use Pod::Tidy;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

has 'columns' => ( is => 'ro' );

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin/SortLines.pm
Expand Up @@ -3,7 +3,7 @@ package Code::TidyAll::Plugin::SortLines;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.30';
our $VERSION = '0.31';

sub transform_source {
my ( $self, $source ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Result.pm
Expand Up @@ -2,7 +2,7 @@ package Code::TidyAll::Result;

use Moo;

our $VERSION = '0.30';
our $VERSION = '0.31';

has 'error' => ( is => 'ro' );
has 'new_contents' => ( is => 'ro' );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Role/Tempdir.pm
Expand Up @@ -5,7 +5,7 @@ use Moo::Role;
use Cwd qw(realpath);
use File::Temp qw(tempdir);

our $VERSION = '0.30';
our $VERSION = '0.31';

has '_tempdir' => ( is => 'ro', lazy => 1, builder => 1 );
has 'no_cleanup' => ( is => 'ro', default => 0 );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/SVN/Precommit.pm
Expand Up @@ -8,7 +8,7 @@ use Moo;
use SVN::Look;
use Try::Tiny;

our $VERSION = '0.30';
our $VERSION = '0.31';

# Public
has 'conf_name' => ( is => 'ro' );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/SVN/Util.pm
Expand Up @@ -6,7 +6,7 @@ use strict;
use warnings;
use base qw(Exporter);

our $VERSION = '0.30';
our $VERSION = '0.31';

our @EXPORT_OK = qw(svn_uncommitted_files);

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Util.pm
Expand Up @@ -13,7 +13,7 @@ use strict;
use warnings;
use base qw(Exporter);

our $VERSION = '0.30';
our $VERSION = '0.31';

our @EXPORT_OK
= qw(abs2rel basename can_load dirname dump_one_line mkpath pushd read_dir realpath rel2abs tempdir_simple trim uniq);
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Util/Zglob.pm
Expand Up @@ -9,7 +9,7 @@ use vars qw/@ISA @EXPORT_OK
@ISA = 'Exporter';
@EXPORT_OK = qw( zglobs_to_regex zglob_to_regex );

our $VERSION = '0.30';
our $VERSION = '0.31';

$strict_leading_dot = 1;
$strict_wildcard_slash = 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Code/TidyAll.pm
Expand Up @@ -8,7 +8,7 @@ use strict;
use warnings;
use base qw(Exporter);

our $VERSION = '0.30';
our $VERSION = '0.31';

my $test = Test::Builder->new;

Expand Down

0 comments on commit 55094e5

Please sign in to comment.