[Rt-commit] r3434 - in Business-Hours/trunk: . lib/Business

jesse at bestpractical.com jesse at bestpractical.com
Fri Jul 8 11:47:40 EDT 2005


Author: jesse
Date: Fri Jul  8 11:47:39 2005
New Revision: 3434

Added:
   Business-Hours/trunk/SIGNATURE
Removed:
   Business-Hours/trunk/Todo
Modified:
   Business-Hours/trunk/   (props changed)
   Business-Hours/trunk/Changes
   Business-Hours/trunk/MANIFEST
   Business-Hours/trunk/META.yml
   Business-Hours/trunk/lib/Business/Hours.pm
Log:
 r22408 at hualien:  jesse | 2005-07-08 11:47:19 -0400
 * Releng for 0.07


Modified: Business-Hours/trunk/Changes
==============================================================================
--- Business-Hours/trunk/Changes	(original)
+++ Business-Hours/trunk/Changes	Fri Jul  8 11:47:39 2005
@@ -1,10 +1,21 @@
 Revision history for Perl module Business::Hours
 
+0.07 Fri Jul  8 11:44:39 EDT 2005
+  * Unembed tests  
+  * POD cleanup (and add pod tests)
+  * no longer an exporter that exports nothing 
+  * http://rt.cpan.org/Ticket/Display.html?id=13374:   
+	in certain time zones (try Guam, for example), the epoch   
+	is a business hour, which led to some tests being run with 
+	start hours of 0, which caught a few places in the code that   
+	were checking $hours->first when they should have been checking
+	defined $hours->first (or actually $hours->empty)  
+	
 0.03 April 1 2003
-        - fixed a bug in between
+- fixed a bug in between
 
 0.02 Feb 20 2003
-        - added "between" as a method, as well as a testsuite
+- added "between" as a method, as well as a testsuite
 
 0.01 Tue Feb 11 14:58:20 2003
 	- original version; created by ExtUtils::ModuleMaker 0.31229

Modified: Business-Hours/trunk/MANIFEST
==============================================================================
--- Business-Hours/trunk/MANIFEST	(original)
+++ Business-Hours/trunk/MANIFEST	Fri Jul  8 11:47:39 2005
@@ -8,4 +8,4 @@
 t/1-business-hours.t
 t/99-pod-coverage.t
 t/99-pod.t
-Todo
+SIGNATURE

Modified: Business-Hours/trunk/META.yml
==============================================================================
--- Business-Hours/trunk/META.yml	(original)
+++ Business-Hours/trunk/META.yml	Fri Jul  8 11:47:39 2005
@@ -1,12 +1,11 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Business-Hours
-version:      0.06
+version:      0.07
 version_from: lib/Business/Hours.pm
 installdirs:  site
 requires:
     Set::IntSpan:                  0
-    Test::Inline:                  0
 
 distribution_type: module
 generated_by: ExtUtils::MakeMaker version 6.17

Added: Business-Hours/trunk/SIGNATURE
==============================================================================
--- (empty file)
+++ Business-Hours/trunk/SIGNATURE	Fri Jul  8 11:47:39 2005
@@ -0,0 +1,33 @@
+This file contains message digests of all files listed in MANIFEST,
+signed via the Module::Signature module, version 0.41.
+
+To verify the content in this distribution, first make sure you have
+Module::Signature installed, then type:
+
+    % cpansign -v
+
+It would check each file's integrity, as well as the signature's
+validity.  If "==> Signature verified OK! <==" is not displayed,
+the distribution may already have been compromised, and you should
+not run its Makefile.PL or Build.PL.
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+SHA1 c63b68708c494e76176ae7607b53d8b475e69c35 Changes
+SHA1 f235ba4160673bcb7c9d58c2f09dbc7fc0efadea LICENSE
+SHA1 ca4c4b7a196a7ea1d907cf757dda78aa99bc11a4 MANIFEST
+SHA1 3f7f12e6e6f44992b29ee734d8883efd2875cc8b META.yml
+SHA1 bf565cd7d1f49956edaed8f89c6021c9ef4847b6 Makefile.PL
+SHA1 7e27ecbd2a455bf2ec9f91f1b8c29853a3663d62 README
+SHA1 164e7df1e35aa854f07a73688c2823faa71d42fd lib/Business/Hours.pm
+SHA1 1b2c1011cde625644c0ae346304a8b96549c356f t/1-business-hours.t
+SHA1 e18498f5413cb08aa563e3d0c76a1d9c6520b8c5 t/99-pod-coverage.t
+SHA1 aaf51e0d68143ceff893513e9a95bd01cdfa216f t/99-pod.t
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.1 (GNU/Linux)
+
+iD8DBQFCzp/gEi9d9xCOQEYRAk0hAJ9FyGIBZ3DsFmaAgpzOikR0B4yrFQCgtXzi
+lH3ETd+s4y9mnzWmGWYVNFg=
+=3bhE
+-----END PGP SIGNATURE-----

Modified: Business-Hours/trunk/lib/Business/Hours.pm
==============================================================================
--- Business-Hours/trunk/lib/Business/Hours.pm	(original)
+++ Business-Hours/trunk/lib/Business/Hours.pm	Fri Jul  8 11:47:39 2005
@@ -6,7 +6,7 @@
 
 use Time::Local qw/timelocal_nocheck/;
 
-our $VERSION = 0.06;
+our $VERSION = 0.07;
 
 =head1 NAME
 


More information about the Rt-commit mailing list