Skip to content

Commit

Permalink
Updating for release of version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Apr 6, 2015
1 parent 6375008 commit eb57385
Show file tree
Hide file tree
Showing 20 changed files with 61 additions and 34 deletions.
27 changes: 27 additions & 0 deletions Changes
@@ -1,5 +1,32 @@
Revision history for Group-Git

0.5.0 2015-04-06
Updating for release of version 0.5.0
Added missing modules to tests (Ivan Wills)
Fixed spelling (Ivan Wills)
Fixed up dependencies (Ivan Wills)
Moved from Moose to Moo (Ivan Wills)
Cleaned up documentation a little (Ivan Wills)
Fixed config file reference (Ivan Wills)
More docs (Ivan Wills)
Added more documentation about tags (Ivan Wills)
Added documentation (Ivan Wills)
Fixed issue when there is no tagging module available (Ivan Wills)
Fixed manifest files (Ivan Wills)
Removed warn statement (Ivan Wills)
Added auto tagging Classes (Ivan Wills)
Fixed require used file name (Ivan Wills)
Implementing tagging base class (Ivan Wills)
Added specific Test::More version for the features being used (Ivan Wills)
Changed log to better fit Getopt::Alt's capabilities (Ivan Wills)
Added using newer version of Getopt::Alt for more flexible arguments (to better match git) (Ivan Wills)
Added coveralls coverage badge (Ivan Wills)
Added more complete list of pull options (Ivan Wills)
Added config for coveralls.io (Ivan Wills)
Made fetch quiet (Ivan Wills)
Added documentation about pull and sh (Ivan Wills)
Giving easy to use examples and explanations (Ivan Wills)

0.4.3 2015-01-16
Updating for release of version 0.4.3
Updated tests with new command (Ivan Wills)
Expand Down
4 changes: 2 additions & 2 deletions bin/group-git
Expand Up @@ -17,7 +17,7 @@ use Group::Git;
use Config::Any;
use Term::ANSIColor qw/colored/;

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

main();
Expand Down Expand Up @@ -271,7 +271,7 @@ group-git - Perform operations over many git repositories at once
=head1 VERSION
This documentation refers to group-git version 0.4.3.
This documentation refers to group-git version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git.pm
Expand Up @@ -18,7 +18,7 @@ use Group::Git::Repo;
use Types::Standard qw/Str Int Bool HashRef/;
use Type::Utils;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');
our $AUTOLOAD;

has conf => (
Expand Down Expand Up @@ -147,7 +147,7 @@ Group::Git - Base module for group of git repository operations.
=head1 VERSION
This documentation refers to Group::Git version 0.4.3.
This documentation refers to Group::Git version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Bitbucket.pm
Expand Up @@ -17,7 +17,7 @@ use JSON qw/decode_json/;
use WWW::Mechanize;
use Path::Class;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

extends 'Group::Git';

Expand Down Expand Up @@ -65,7 +65,7 @@ Group::Git::Bitbucket - Adds reading all repositories you have access to on bitb
=head1 VERSION
This documentation refers to Group::Git::Bitbucket version 0.4.3.
This documentation refers to Group::Git::Bitbucket version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Branch.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -61,7 +61,7 @@ Group::Git::Cmd::Branch - Show all branches with optional grepping
=head1 VERSION
This documentation refers to Group::Git::Cmd::Branch version 0.4.3.
This documentation refers to Group::Git::Cmd::Branch version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Help.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -49,7 +49,7 @@ Group::Git::Cmd::Help - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::Help version 0.4.3.
This documentation refers to Group::Git::Cmd::Help version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/List.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -44,7 +44,7 @@ Group::Git::Cmd::List - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::List version 0.4.3.
This documentation refers to Group::Git::Cmd::List version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Pull.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -108,7 +108,7 @@ Group::Git::Cmd::Pull - Pull latest version of all repositories or clone any tha
=head1 VERSION
This documentation refers to Group::Git::Cmd::Pull version 0.4.3.
This documentation refers to Group::Git::Cmd::Pull version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Sh.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -68,7 +68,7 @@ Group::Git::Cmd::Sh - Runs shell script in each git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::Sh version 0.4.3.
This documentation refers to Group::Git::Cmd::Sh version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Status.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -62,7 +62,7 @@ Group::Git::Cmd::Status - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::Status version 0.4.3.
This documentation refers to Group::Git::Cmd::Status version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/TagList.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -66,7 +66,7 @@ Group::Git::Cmd::TagList - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::TagList version 0.4.3.
This documentation refers to Group::Git::Cmd::TagList version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Watch.pm
Expand Up @@ -17,7 +17,7 @@ use Getopt::Alt;
use YAML::Syck qw/LoadFile DumpFile/;
use Types::Standard qw/Bool/;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -117,7 +117,7 @@ Group::Git::Cmd::Watch - Watch for changes in repositories and run a command
=head1 VERSION
This documentation refers to Group::Git::Cmd::Watch version 0.4.3.
This documentation refers to Group::Git::Cmd::Watch version 0.5.0.
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/Group/Git/Examples.pod
Expand Up @@ -4,7 +4,7 @@ Group::Git::Examples - Some example usage of group-git

=head1 VERSION

This documentation refers to Group::Git::Examples version 0.4.3
This documentation refers to Group::Git::Examples version 0.5.0

=head1 EXAMPLES

Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Github.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use Net::GitHub;
use Path::Class;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

extends 'Group::Git';

Expand Down Expand Up @@ -90,7 +90,7 @@ Group::Git::Github - Adds reading all repositories you have access to on github.
=head1 VERSION
This documentation refers to Group::Git::Github version 0.4.3.
This documentation refers to Group::Git::Github version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Gitosis.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use Path::Class;
use File::chdir;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

extends 'Group::Git';

Expand Down Expand Up @@ -77,7 +77,7 @@ Group::Git::Gitosis - Adds reading all repositories you have access to on a gito
=head1 VERSION
This documentation refers to Group::Git::Gitosis version 0.4.3.
This documentation refers to Group::Git::Gitosis version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Repo.pm
Expand Up @@ -13,7 +13,7 @@ use version;
use Types::Standard qw/Str/;
use Type::Utils;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

extends 'Group::Git';

Expand All @@ -40,7 +40,7 @@ Group::Git::Repo - Git repository details object.
=head1 VERSION
This documentation refers to Group::Git::Repo version 0.4.3.
This documentation refers to Group::Git::Repo version 0.5.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Stash.pm
Expand Up @@ -17,7 +17,7 @@ use JSON qw/decode_json/;
use WWW::Mechanize;
use Path::Class;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

extends 'Group::Git';

Expand Down Expand Up @@ -81,7 +81,7 @@ Group::Git::Stash - Adds reading all repositories you have access to on your loc
=head1 VERSION
This documentation refers to Group::Git::Stash version 0.4.3.
This documentation refers to Group::Git::Stash version 0.5.0.
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/Group/Git/Taggers.pm
Expand Up @@ -15,7 +15,7 @@ use Carp;
use English qw/ -no_match_vars /;
use File::chdir;

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

sub matches {
my ($self, $project) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Group/Git/Taggers/Local.pm
Expand Up @@ -16,7 +16,7 @@ use English qw/ -no_match_vars /;

extends 'Group::Git::Taggers';

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

sub match {
my ($self, $project) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Group/Git/Taggers/Remote.pm
Expand Up @@ -16,7 +16,7 @@ use English qw/ -no_match_vars /;

extends 'Group::Git::Taggers';

our $VERSION = version->new('0.4.3');
our $VERSION = version->new('0.5.0');

sub match {
my ($self, $project) = @_;
Expand Down

0 comments on commit eb57385

Please sign in to comment.