Skip to content

Commit

Permalink
Updating for release of version 0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills-optus committed Mar 11, 2018
1 parent 3922d10 commit 5ed08a8
Show file tree
Hide file tree
Showing 22 changed files with 50 additions and 38 deletions.
12 changes: 12 additions & 0 deletions Changes
@@ -1,5 +1,17 @@
Revision history for Group-Git

0.6.7 2018-03-11
Updating for release of version 0.6.7
Added perl 5.26 to travis builds (Ivan Wills)
Updated date (Ivan Wills)
Adding docs for method (Ivan Wills)
Only show thread errors if --verbose is on (Ivan Wills)
Protecting against threads dieing (Ivan Wills)
Removed reprocess command - not sure why it was ever there (Ivan Wills)
Added ability to run a shell command in each repository (Ivan Wills)
Fixing issue when $dir not set (Ivan Wills)
Fixing issue with $self->opt going missing (Ivan Wills)

0.6.6 2017-12-04
Updating for release of version 0.6.6
Adding support for github one-time-passwords (Ivan Wills)
Expand Down
4 changes: 2 additions & 2 deletions bin/group-git
Expand Up @@ -19,7 +19,7 @@ use Config::Any;
use Term::ANSIColor qw/colored/;
use File::chdir;

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

main();
Expand Down Expand Up @@ -318,7 +318,7 @@ group-git - Perform operations over many git repositories at once
=head1 VERSION
This documentation refers to group-git version 0.6.6.
This documentation refers to group-git version 0.6.7.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git.pm
Expand Up @@ -19,7 +19,7 @@ use Types::Standard qw/Str Int Bool HashRef/;
use Type::Utils;
use Module::Pluggable require => 1, search_path => ['Group::Git::Cmd', 'Group::Git::Taggers'];

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');
our $AUTOLOAD;

has conf => (
Expand Down Expand Up @@ -167,7 +167,7 @@ Group::Git - Base module for group of git repository operations.
=head1 VERSION
This documentation refers to Group::Git version 0.6.6.
This documentation refers to Group::Git version 0.6.7.
=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::Tiny;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Bitbucket version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Cmd::Branch version 0.6.7.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Grep.pm
Expand Up @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /;
use File::chdir;
use Getopt::Alt;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -112,7 +112,7 @@ Group::Git::Cmd::Grep - Quick state of each repository (branch name and changes)
=head1 VERSION
This documentation refers to Group::Git::Cmd::Grep version 0.6.6.
This documentation refers to Group::Git::Cmd::Grep version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Cmd::Help version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -68,7 +68,7 @@ Group::Git::Cmd::List - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::List version 0.6.6.
This documentation refers to Group::Git::Cmd::List version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -121,7 +121,7 @@ Group::Git::Cmd::Pull - Pull latest versions of all repositories or clone any th
=head1 VERSION
This documentation refers to Group::Git::Cmd::Pull version 0.6.6.
This documentation refers to Group::Git::Cmd::Pull version 0.6.7.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Group/Git/Cmd/Sh.pm
Expand Up @@ -16,7 +16,7 @@ use File::chdir;
use Getopt::Alt;
use Path::Tiny;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

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

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -65,7 +65,7 @@ Group::Git::Cmd::State - Quick state of each repository (branch name and changes
=head1 VERSION
This documentation refers to Group::Git::Cmd::State version 0.6.6.
This documentation refers to Group::Git::Cmd::State version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

requires 'repos';
requires 'verbose';
Expand Down Expand Up @@ -63,7 +63,7 @@ Group::Git::Cmd::Status - Runs git status on a git project
=head1 VERSION
This documentation refers to Group::Git::Cmd::Status version 0.6.6.
This documentation refers to Group::Git::Cmd::Status version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Cmd::TagList version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Cmd::Watch version 0.6.7.
=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.6.6
This documentation refers to Group::Git::Examples version 0.6.7

=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::Tiny;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

extends 'Group::Git';

Expand Down Expand Up @@ -95,7 +95,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.6.6.
This documentation refers to Group::Git::Github version 0.6.7.
=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::Tiny;
use File::chdir;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

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.6.6.
This documentation refers to Group::Git::Gitosis version 0.6.7.
=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 HashRef/;
use Type::Utils;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

extends 'Group::Git';

Expand Down Expand Up @@ -70,7 +70,7 @@ Group::Git::Repo - Git repository details object.
=head1 VERSION
This documentation refers to Group::Git::Repo version 0.6.6.
This documentation refers to Group::Git::Repo version 0.6.7.
=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::Tiny;

our $VERSION = version->new('0.6.6');
our $VERSION = version->new('0.6.7');

extends 'Group::Git';

Expand Down Expand Up @@ -91,7 +91,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.6.6.
This documentation refers to Group::Git::Stash version 0.6.7.
=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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6');
our $VERSION = version->new('0.6.7');

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.6.6');
our $VERSION = version->new('0.6.7');

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

0 comments on commit 5ed08a8

Please sign in to comment.