Skip to content

Commit

Permalink
Updating for release of version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Apr 17, 2016
1 parent bfcbe75 commit 8fa284e
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 18 deletions.
19 changes: 19 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
Revision history for VCS-Which

0.6.0 2016-04-17
Updating for release of version 0.6.0
Added more tests (Ivan Wills)
Removed redundant check (Ivan Wills)
Restructuring code for better code coverage (Ivan Wills)
Adding more tests (Ivan Wills)
Made propper attributes (Ivan Wills)
Finishing Moo conversion (Ivan Wills)
Added Moo as a dependency (Ivan Wills)
Mooifying VCS::Which (Ivan Wills)
Added restart to bin files (Ivan Wills)
Update skip files (Ivan Wills)
License date update (Ivan Wills)
Updating config (Ivan Wills)
Fixed more newer/older git issues (Ivan Wills)
Added tracking added files to current HEAD (Ivan Wills)
diff doesn't cope with 3 file diffs (Ivan Wills)
VTide and editor configs (Ivan Wills)

0.5.9 2015-10-27
Updating for release of version 0.5.9
Fixed more newer git issues (Ivan Wills)
Expand Down
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.5.9');
our $VERSION = version->new('0.6.0');
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.9.
This documentation refers to vcsvimdiff version 0.6.0.
=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.5.9');
our $VERSION = version->new('0.6.0');
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.9.
This documentation refers to vcsw version 0.6.0.
=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.5.9');
our $VERSION = version->new('0.6.0');
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.9.
This documentation refers to <Name> version 0.6.0.
=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.5.9');
our $VERSION = version->new('0.6.0');

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.5.9.
This documentation refers to VCS::Which version 0.6.0.
=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.5.9');
our $VERSION = version->new('0.6.0');

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

0 comments on commit 8fa284e

Please sign in to comment.