From: Vincent Pit Date: Fri, 5 Mar 2010 23:58:34 +0000 (+0100) Subject: This is 0.08 X-Git-Tag: v0.08^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=commitdiff_plain;h=2e8121b94bf4847686087060a709fa3bb433f4ee This is 0.08 --- diff --git a/Changes b/Changes index 7705490..80e8153 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for rgit +0.08 2010-03-06 00:00 UTC + + Fix : Only apply abs_path() to paths that are either relative or that + contains '..'. This should fix test failures on Mac OS X. + 0.07 2010-02-24 19:25 UTC + Chg : Policies earned their own set of classes under the App::Rgit::Policy namespace. diff --git a/META.yml b/META.yml index 13d20b6..6430f0d 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: rgit -version: 0.07 +version: 0.08 abstract: Recursively execute a command on all the git repositories in a directory tree. author: - Vincent Pit diff --git a/README b/README index fbb30f0..90440a6 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME directory tree. VERSION - Version 0.07 + Version 0.08 SYNOPSIS rgit [-K|-I|-D|-V] [GIT_OPTIONS] COMMAND [COMMAND_ARGS] diff --git a/bin/rgit b/bin/rgit index 2b8a212..61f9456 100755 --- a/bin/rgit +++ b/bin/rgit @@ -13,7 +13,7 @@ use App::Rgit::Policy; our $VERSION; BEGIN { - $VERSION = '0.07'; + $VERSION = '0.08'; } my %opts; @@ -64,7 +64,7 @@ rgit - Recursively execute a command on all the git repositories in a directory =head1 VERSION -Version 0.07 +Version 0.08 =head1 SYNOPSIS diff --git a/lib/App/Rgit.pm b/lib/App/Rgit.pm index 4231436..6b43f16 100644 --- a/lib/App/Rgit.pm +++ b/lib/App/Rgit.pm @@ -12,11 +12,11 @@ App::Rgit - Backend that supports the rgit utility. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Command.pm b/lib/App/Rgit/Command.pm index 60b23e3..5edd9c2 100644 --- a/lib/App/Rgit/Command.pm +++ b/lib/App/Rgit/Command.pm @@ -13,11 +13,11 @@ App::Rgit::Command - Base class for App::Rgit commands. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Command/Each.pm b/lib/App/Rgit/Command/Each.pm index 3666c63..b50e180 100644 --- a/lib/App/Rgit/Command/Each.pm +++ b/lib/App/Rgit/Command/Each.pm @@ -14,11 +14,11 @@ App::Rgit::Command::Each - Class for commands to execute for each repository. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Command/Once.pm b/lib/App/Rgit/Command/Once.pm index 8186d2e..630f252 100644 --- a/lib/App/Rgit/Command/Once.pm +++ b/lib/App/Rgit/Command/Once.pm @@ -11,11 +11,11 @@ App::Rgit::Command::Once - Class for commands to execute only once. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Config.pm b/lib/App/Rgit/Config.pm index 23874c5..29ebd7b 100644 --- a/lib/App/Rgit/Config.pm +++ b/lib/App/Rgit/Config.pm @@ -18,11 +18,11 @@ App::Rgit::Config - Base class for App::Rgit configurations. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Config/Default.pm b/lib/App/Rgit/Config/Default.pm index 1544e47..a1bfc77 100644 --- a/lib/App/Rgit/Config/Default.pm +++ b/lib/App/Rgit/Config/Default.pm @@ -15,11 +15,11 @@ App::Rgit::Config::Default - Default App::Rgit configuration class. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Guard.pm b/lib/App/Rgit/Guard.pm index ad6b229..6bcd078 100644 --- a/lib/App/Rgit/Guard.pm +++ b/lib/App/Rgit/Guard.pm @@ -9,11 +9,11 @@ App::Rgit::Guard - Scope guard helper for App::Rgit. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Policy.pm b/lib/App/Rgit/Policy.pm index a24a300..d481417 100644 --- a/lib/App/Rgit/Policy.pm +++ b/lib/App/Rgit/Policy.pm @@ -9,11 +9,11 @@ App::Rgit::Policy - Base class for App::Rgit policies. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Policy/Default.pm b/lib/App/Rgit/Policy/Default.pm index 7164b45..5c8203b 100644 --- a/lib/App/Rgit/Policy/Default.pm +++ b/lib/App/Rgit/Policy/Default.pm @@ -13,11 +13,11 @@ App::Rgit::Policy::Default - The default policy that stops on error. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Policy/Interactive.pm b/lib/App/Rgit/Policy/Interactive.pm index 26eef24..27e12c9 100644 --- a/lib/App/Rgit/Policy/Interactive.pm +++ b/lib/App/Rgit/Policy/Interactive.pm @@ -15,11 +15,11 @@ App::Rgit::Policy::Interactive - A policy that asks what to do on error. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Policy/Keep.pm b/lib/App/Rgit/Policy/Keep.pm index 230518a..82b6a48 100644 --- a/lib/App/Rgit/Policy/Keep.pm +++ b/lib/App/Rgit/Policy/Keep.pm @@ -13,11 +13,11 @@ App::Rgit::Policy::Keep - A policy that ignores errors. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Repository.pm b/lib/App/Rgit/Repository.pm index c340942..fbf3f86 100644 --- a/lib/App/Rgit/Repository.pm +++ b/lib/App/Rgit/Repository.pm @@ -28,11 +28,11 @@ App::Rgit::Repository - Class representing a Git repository. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION diff --git a/lib/App/Rgit/Utils.pm b/lib/App/Rgit/Utils.pm index 21004de..c081d9b 100644 --- a/lib/App/Rgit/Utils.pm +++ b/lib/App/Rgit/Utils.pm @@ -12,11 +12,11 @@ App::Rgit::Utils - Miscellaneous utilities for App::Rgit classes. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 DESCRIPTION