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 Mar 31, 2015
1 parent 1a83665 commit bf46aec
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion bin/tidyall
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Code::TidyAll::Util qw(can_load dirname rel2abs);
use strict;
use warnings;

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Cache.pm
Original file line number Diff line number Diff line change
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.25';
our $VERSION = '0.26';

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

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

our $VERSION = '0.25';
our $VERSION = '0.26';

# todo, type checking?

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

our @EXPORT_OK = qw(git_uncommitted_files);

Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/Plugin.pm
Original file line number Diff line number Diff line change
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.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'cssunminifier'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'js-beautify'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'jslint'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

extends 'Code::TidyAll::Plugin';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'masontidy'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'phpcs'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

sub _build_cmd {'perlcritic'}

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Pod::Tidy;
use Moo;
extends 'Code::TidyAll::Plugin';

our $VERSION = '0.25';
our $VERSION = '0.26';

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

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

use Moo;

our $VERSION = '0.25';
our $VERSION = '0.26';

has 'error' => ( is => 'ro' );
has 'new_contents' => ( is => 'ro' );
Expand Down
2 changes: 1 addition & 1 deletion lib/Code/TidyAll/SVN/Precommit.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Moo;
use SVN::Look;
use Try::Tiny;

our $VERSION = '0.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

our @EXPORT_OK = qw(svn_uncommitted_files);

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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
Original file line number Diff line number Diff line change
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.25';
our $VERSION = '0.26';

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

our $VERSION = '0.25';
our $VERSION = '0.26';

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

Expand Down

0 comments on commit bf46aec

Please sign in to comment.