Skip to content

Commit

Permalink
Updating for release of version 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Mar 26, 2017
1 parent 4910059 commit a1f89b3
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 19 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for VCS-Which

0.6.4 2017-03-26
Updating for release of version 0.6.4
Merge pull request #1 from manwar/fix-inconsisten-version (Ivan Wills)
Fix incosistent version as reported by CPANTS. (Mohammad S Anwar)

0.6.3 2017-01-15
Updating for release of version 0.6.3
Updated licence (Ivan Wills)
Expand Down
4 changes: 2 additions & 2 deletions bin/vcsvimdiff
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.3');
our $VERSION = version->new('0.6.4');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

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

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3.
This documentation refers to vcsw version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions eg/vcslogstat
Expand Up @@ -19,7 +19,7 @@ use VCS::Which;
use Path::Tiny;
use Time::HiRes qw/time/;

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3.
This documentation refers to <Name> version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which.pm
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.3');
our $VERSION = version->new('0.6.4');

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.3.
This documentation refers to VCS::Which version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin.pm
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.3');
our $VERSION = version->new('0.6.4');

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.3.
This documentation refers to VCS::Which::Plugin version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Bazaar.pm
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3.
This documentation refers to VCS::Which::Plugin::Bazaar version 0.6.4.
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/VCS/Which/Plugin/CVS.pm
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
our $name = 'CVS';
our $exe = 'cvs';
our $meta = 'CVS';
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Git.pm
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3.
This documentation refers to VCS::Which::Plugin::Git version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Subversion.pm
Expand Up @@ -19,7 +19,7 @@ use Contextual::Return;

extends 'VCS::Which::Plugin';

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3.
This documentation refers to VCS::Which::Plugin::Subversion version 0.6.4.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions t/lib/VCS/Which/Plugin/Blank.pm
Expand Up @@ -16,7 +16,7 @@ use base qw/VCS::Which::Plugin/;
use Path::Tiny;
use Contextual::Return;

our $VERSION = version->new('0.6.3');
our $VERSION = version->new('0.6.4');
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.3
This documentation refers to VCS::Which::Plugin::Blank version 0.6.4
=head1 SYNOPSIS
Expand Down

0 comments on commit a1f89b3

Please sign in to comment.