[Bps-public-commit] rt-extension-jsgantt branch, master, updated. 92b24da62a00bd6d5f156bf95f92c0b8665122ee

? sunnavy sunnavy at bestpractical.com
Wed Oct 26 07:00:35 EDT 2011


The branch, master has been updated
       via  92b24da62a00bd6d5f156bf95f92c0b8665122ee (commit)
       via  de28f487e3f55b254edffd11e5948ccb21a3642e (commit)
       via  1371caeb5b8c942586df01e3955fb76d6536d23b (commit)
       via  43178e3c798f1201f1df78065b41fe6199a26e6e (commit)
      from  a2cc5c2d66798b72fbfb1360dd95a506c861f4a9 (commit)

Summary of changes:
 Changes                        |    8 +++++++-
 META.yml                       |    4 ++--
 Makefile.PL                    |    4 +++-
 inc/Module/Install.pm          |    2 +-
 inc/Module/Install/Base.pm     |    2 +-
 inc/Module/Install/Can.pm      |    2 +-
 inc/Module/Install/Fetch.pm    |    2 +-
 inc/Module/Install/Makefile.pm |    2 +-
 inc/Module/Install/Metadata.pm |    6 +++---
 inc/Module/Install/Win32.pm    |    2 +-
 inc/Module/Install/WriteAll.pm |    2 +-
 lib/RT/Extension/JSGantt.pm    |    2 +-
 12 files changed, 23 insertions(+), 15 deletions(-)

- Log -----------------------------------------------------------------
commit 43178e3c798f1201f1df78065b41fe6199a26e6e
Author: sunnavy <sunnavy at gmail.com>
Date:   Wed Oct 26 18:46:35 2011 +0800

    update m:i to 1.02

diff --git a/META.yml b/META.yml
index 8438e74..47cd116 100644
--- a/META.yml
+++ b/META.yml
@@ -7,7 +7,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 1.01'
+generated_by: 'Module::Install version 1.02'
 license: gplv2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
diff --git a/inc/Module/Install.pm b/inc/Module/Install.pm
index 74caf9c..c6af74c 100644
--- a/inc/Module/Install.pm
+++ b/inc/Module/Install.pm
@@ -31,7 +31,7 @@ BEGIN {
 	# This is not enforced yet, but will be some time in the next few
 	# releases once we can make sure it won't clash with custom
 	# Module::Install extensions.
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 
 	# Storage for the pseudo-singleton
 	$MAIN    = undef;
diff --git a/inc/Module/Install/Base.pm b/inc/Module/Install/Base.pm
index d3662c9..b401932 100644
--- a/inc/Module/Install/Base.pm
+++ b/inc/Module/Install/Base.pm
@@ -4,7 +4,7 @@ package Module::Install::Base;
 use strict 'vars';
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 }
 
 # Suspend handler for "redefined" warnings
diff --git a/inc/Module/Install/Can.pm b/inc/Module/Install/Can.pm
index 276409a..3380ac7 100644
--- a/inc/Module/Install/Can.pm
+++ b/inc/Module/Install/Can.pm
@@ -9,7 +9,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Fetch.pm b/inc/Module/Install/Fetch.pm
index 093cb7a..cf431aa 100644
--- a/inc/Module/Install/Fetch.pm
+++ b/inc/Module/Install/Fetch.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Makefile.pm b/inc/Module/Install/Makefile.pm
index 4c71003..24d941e 100644
--- a/inc/Module/Install/Makefile.pm
+++ b/inc/Module/Install/Makefile.pm
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/Metadata.pm b/inc/Module/Install/Metadata.pm
index 3b01e09..5fc5b35 100644
--- a/inc/Module/Install/Metadata.pm
+++ b/inc/Module/Install/Metadata.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
@@ -170,7 +170,7 @@ sub perl_version {
 	# Normalize the version
 	$version = $self->_perl_version($version);
 
-	# We don't support the reall old versions
+	# We don't support the really old versions
 	unless ( $version >= 5.005 ) {
 		die "Module::Install only supports 5.005 or newer (use ExtUtils::MakeMaker)\n";
 	}
@@ -582,7 +582,7 @@ sub bugtracker_from {
 sub requires_from {
 	my $self     = shift;
 	my $content  = Module::Install::_readperl($_[0]);
-	my @requires = $content =~ m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+([\d\.]+)/mg;
+	my @requires = $content =~ m/^use\s+([^\W\d]\w*(?:::\w+)*)\s+(v?[\d\.]+)/mg;
 	while ( @requires ) {
 		my $module  = shift @requires;
 		my $version = shift @requires;
diff --git a/inc/Module/Install/Win32.pm b/inc/Module/Install/Win32.pm
index 3139a63..2c84409 100644
--- a/inc/Module/Install/Win32.pm
+++ b/inc/Module/Install/Win32.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = 'Module::Install::Base';
 	$ISCORE  = 1;
 }
diff --git a/inc/Module/Install/WriteAll.pm b/inc/Module/Install/WriteAll.pm
index 1f724a7..4aec16c 100644
--- a/inc/Module/Install/WriteAll.pm
+++ b/inc/Module/Install/WriteAll.pm
@@ -6,7 +6,7 @@ use Module::Install::Base ();
 
 use vars qw{$VERSION @ISA $ISCORE};
 BEGIN {
-	$VERSION = '1.01';
+	$VERSION = '1.02';
 	@ISA     = qw{Module::Install::Base};
 	$ISCORE  = 1;
 }

commit 1371caeb5b8c942586df01e3955fb76d6536d23b
Author: sunnavy <sunnavy at gmail.com>
Date:   Wed Oct 26 18:57:48 2011 +0800

    mv RTx() right after version to avoid warning like "Cannot determine perl version info"

diff --git a/Makefile.PL b/Makefile.PL
index 681901f..b06ef59 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,10 +1,12 @@
 use inc::Module::Install;
 
+version_from ('lib/RT/Extension/JSGantt.pm');
 RTx('RT-Extension-JSGantt');
+
 author ('sunnavy <sunnavy at bestpractical.com>');
-version_from ('lib/RT/Extension/JSGantt.pm');
 abstract_from('lib/RT/Extension/JSGantt.pm');
 license('GPLv2');
+
 repository 'git://github.com/bestpractical/rt-extension-jsgantt.git';
 
 requires( 'JSON' );

commit de28f487e3f55b254edffd11e5948ccb21a3642e
Author: sunnavy <sunnavy at gmail.com>
Date:   Wed Oct 26 18:52:06 2011 +0800

    release 0.14

diff --git a/Changes b/Changes
index cba4212..6fd2b81 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,10 @@
 Revision history for RT-Extension-JSGantt
 
-0.14
+0.14 Wed Oct 26 18:47:18 CST 2011
+
+    * add ColorSchemeByOwner option to use one color for each user.
+    * improve the way we sort related tickets so children can appear just after their parents.
+    * has_members now is true only if the ticket is the first parent of some of its children
 
 0.13 Sat Oct  8 15:56:53 CST 2011
 

commit 92b24da62a00bd6d5f156bf95f92c0b8665122ee
Author: sunnavy <sunnavy at gmail.com>
Date:   Wed Oct 26 19:00:10 2011 +0800

    bump to 0.15

diff --git a/Changes b/Changes
index 6fd2b81..dd75b4e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for RT-Extension-JSGantt
 
+0.15
+
 0.14 Wed Oct 26 18:47:18 CST 2011
 
     * add ColorSchemeByOwner option to use one color for each user.
diff --git a/META.yml b/META.yml
index 47cd116..e903c82 100644
--- a/META.yml
+++ b/META.yml
@@ -23,4 +23,4 @@ requires:
   List::MoreUtils: 0
 resources:
   repository: git://github.com/bestpractical/rt-extension-jsgantt.git
-version: 0.14
+version: 0.15
diff --git a/lib/RT/Extension/JSGantt.pm b/lib/RT/Extension/JSGantt.pm
index fb8376d..f9c42d8 100644
--- a/lib/RT/Extension/JSGantt.pm
+++ b/lib/RT/Extension/JSGantt.pm
@@ -58,7 +58,7 @@ RT::Extension::JSGantt - Gantt charts for your tickets
 
 package RT::Extension::JSGantt;
 
-our $VERSION = '0.14';
+our $VERSION = '0.15';
 
 use warnings;
 use strict;

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list