Skip to content

Commit

Permalink
Updating for release of version 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Jun 20, 2015
1 parent b26710a commit a98c5c2
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 20 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for VCS-Which

0.5.5 2015-06-20
Updating for release of version 0.5.5
Fixed version number (Ivan Wills)

0.5.4 2015-06-15
Updating for release of version 0.5.4
Fixed description to be on only one line (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::Class;
use File::Copy qw/copy/;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
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.5.4.
This documentation refers to vcsvimdiff version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions bin/vcsw
Expand Up @@ -17,7 +17,7 @@ use FindBin qw/$Bin/;
use Path::Class qw/file/;
use VCS::Which;

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

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
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.5.4.
This documentation refers to <Name> version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use base qw/Exporter/;
use Path::Class qw/file/;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();

Expand Down Expand Up @@ -338,7 +338,7 @@ VCS::Which - Generically interface with version control systems
=head1 VERSION
This documentation refers to VCS::Which version 0.5.4.
This documentation refers to VCS::Which version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use base qw/Exporter/;
use File::chdir;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();

Expand Down Expand Up @@ -131,7 +131,7 @@ VCS::Which::Plugin - Base class for the various VCS plugins
=head1 VERSION
This documentation refers to VCS::Which::Plugin version 0.5.4.
This documentation refers to VCS::Which::Plugin version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Bazaar.pm
Expand Up @@ -17,7 +17,7 @@ use Path::Class;
use File::chdir;
use Contextual::Return;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our $name = 'Bazaar';
our $exe = 'bzr';
our $meta = '.bzr';
Expand Down Expand Up @@ -164,7 +164,7 @@ VCS::Which::Plugin::Bazaar - The Bazaar plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Bazaar version 0.5.4.
This documentation refers to VCS::Which::Plugin::Bazaar version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/CVS.pm
Expand Up @@ -17,7 +17,7 @@ use Path::Class;
use File::chdir;
use Contextual::Return;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our $name = 'CVS';
our $exe = 'cvs';
our $meta = 'CVS';
Expand Down Expand Up @@ -146,7 +146,7 @@ VCS::Which::Plugin::CVS - CVS plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::CVS version 0.5.4.
This documentation refers to VCS::Which::Plugin::CVS version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Git.pm
Expand Up @@ -17,7 +17,7 @@ use Path::Class;
use File::chdir;
use Contextual::Return;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our $name = 'Git';
our $exe = 'git';
our $meta = '.git';
Expand Down Expand Up @@ -296,7 +296,7 @@ VCS::Which::Plugin::Git - The Git plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Git version 0.5.4.
This documentation refers to VCS::Which::Plugin::Git version 0.5.5.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/VCS/Which/Plugin/Subversion.pm
Expand Up @@ -17,7 +17,7 @@ use Path::Class;
use File::chdir;
use Contextual::Return;

our $VERSION = version->new('0.5.4');
our $VERSION = version->new('0.5.5');
our $name = 'Subversion';
our $exe = 'svn';
our $meta = '.svn';
Expand Down Expand Up @@ -160,7 +160,7 @@ VCS::Which::Plugin::Subversion - The Subversion plugin for VCS::Which
=head1 VERSION
This documentation refers to VCS::Which::Plugin::Subversion version 0.5.4.
This documentation refers to VCS::Which::Plugin::Subversion version 0.5.5.
=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::Class;
use Contextual::Return;

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

0 comments on commit a98c5c2

Please sign in to comment.