Skip to content

Commit

Permalink
Updating for release of version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Jul 31, 2016
1 parent e9fe320 commit 68dc8e6
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for VCS-Which

0.6.1 2016-07-31
Updating for release of version 0.6.1
Added safty disabled patterns (Ivan Wills)

0.6.0 2016-04-17
Updating for release of version 0.6.0
Added more tests (Ivan Wills)
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ errors.err
vim.sh
vrc.yml
tmp*
temp*
temp/*
4 changes: 2 additions & 2 deletions bin/vcsvimdiff
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use IO::Prompt qw/prompt/;
use Path::Tiny;
use File::Copy qw/copy/;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

my %option = (
Expand Down Expand Up @@ -258,7 +258,7 @@ vcsvimdiff - Uses vimdiff to compare a file with it unmodified version or histor
=head1 VERSION
This documentation refers to vcsvimdiff version 0.6.0.
This documentation refers to vcsvimdiff version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions bin/vcsw
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use FindBin qw/$Bin/;
use Path::Tiny;
use VCS::Which;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

if ( !@ARGV ) {
Expand Down Expand Up @@ -74,7 +74,7 @@ vcsw - One command to rule version control systems
=head1 VERSION
This documentation refers to vcsw version 0.6.0.
This documentation refers to vcsw version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions eg/vcslogstat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use VCS::Which;
use Path::Tiny;
use Time::HiRes qw/time/;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

my %option = (
Expand Down Expand Up @@ -112,7 +112,7 @@ __DATA__
=head1 VERSION
This documentation refers to <Name> version 0.6.0.
This documentation refers to <Name> version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;
use Path::Tiny;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');

our %systems;

Expand Down Expand Up @@ -341,7 +341,7 @@ VCS::Which - Generically interface with version control systems
=head1 VERSION
This documentation refers to VCS::Which version 0.6.0.
This documentation refers to VCS::Which version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Data::Dumper qw/Dumper/;
use English qw/ -no_match_vars /;
use File::chdir;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');

has [qw/_installed _base/] => (
is => 'rw',
Expand Down Expand Up @@ -122,7 +122,7 @@ VCS::Which::Plugin - Base class for the various VCS plugins
=head1 VERSION
This documentation refers to VCS::Which::Plugin version 0.6.0.
This documentation refers to VCS::Which::Plugin version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Bazaar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
our $name = 'Bazaar';
our $exe = 'bzr';
our $meta = '.bzr';
Expand Down Expand Up @@ -166,7 +166,7 @@ VCS::Which::Plugin::Bazaar - The Bazaar plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Bazaar version 0.6.0.
This documentation refers to VCS::Which::Plugin::Bazaar version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Git.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
our $name = 'Git';
our $exe = 'git';
our $meta = '.git';
Expand Down Expand Up @@ -316,7 +316,7 @@ VCS::Which::Plugin::Git - The Git plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Git version 0.6.0.
This documentation refers to VCS::Which::Plugin::Git version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Subversion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
our $name = 'Subversion';
our $exe = 'svn';
our $meta = '.svn';
Expand Down Expand Up @@ -162,7 +162,7 @@ VCS::Which::Plugin::Subversion - The Subversion plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Subversion version 0.6.0.
This documentation refers to VCS::Which::Plugin::Subversion version 0.6.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions t/lib/VCS/Which/Plugin/Blank.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use base qw/VCS::Which::Plugin/;
use Path::Tiny;
use Contextual::Return;

our $VERSION = version->new('0.6.0');
our $VERSION = version->new('0.6.1');
our $name = 'Blank';
our $exe = 'blank';
our $meta = '.blank';
Expand Down Expand Up @@ -45,7 +45,7 @@ VCS::Which::Plugin::Blank - <One-line description of module's purpose>
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Blank version 0.6.0
This documentation refers to VCS::Which::Plugin::Blank version 0.6.1
=head1 SYNOPSIS
Expand Down

0 comments on commit 68dc8e6

Please sign in to comment.