[Bps-public-commit] dbix-searchbuilder branch, master, updated. 1.62-7-gc171cbb
Thomas Sibley
trs at bestpractical.com
Thu Sep 13 17:26:35 EDT 2012
The branch, master has been updated
via c171cbbabe38d08c99360ef4d853c1e539f98238 (commit)
via 7278ed628aa29e4718bf7450368aa74a845aa376 (commit)
via 6b51111fdb0e16266ea520260e6ea46e36ad21c9 (commit)
via aa89f6580185fc1788c8df5cec64c6f23a6e8df0 (commit)
from a25869f2402665e22c01de4cd2ff9068bbed9621 (commit)
Summary of changes:
MANIFEST.SKIP | 3 +++
META.yml | 2 +-
Makefile.PL | 1 +
lib/DBIx/SearchBuilder.pm | 2 +-
lib/DBIx/SearchBuilder/Handle.pm | 2 +-
5 files changed, 7 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit aa89f6580185fc1788c8df5cec64c6f23a6e8df0
Author: Thomas Sibley <trs at bestpractical.com>
Date: Thu Sep 13 14:24:40 2012 -0700
Avoid an undef warning by making Type default to the empty string
diff --git a/lib/DBIx/SearchBuilder/Handle.pm b/lib/DBIx/SearchBuilder/Handle.pm
index 550b99a..ba0ddff 100755
--- a/lib/DBIx/SearchBuilder/Handle.pm
+++ b/lib/DBIx/SearchBuilder/Handle.pm
@@ -1538,7 +1538,7 @@ sub DateTimeFunction {
my $self = shift;
my %args = (
Field => undef,
- Type => undef,
+ Type => '',
Timezone => undef,
@_
);
commit 6b51111fdb0e16266ea520260e6ea46e36ad21c9
Author: Thomas Sibley <trs at bestpractical.com>
Date: Thu Sep 13 14:21:47 2012 -0700
Automatically update SIGNATURE during `make dist`
diff --git a/Makefile.PL b/Makefile.PL
index 6fb6617..09afb1b 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -29,4 +29,5 @@ auto_install();
no_index directory => 't';
no_index directory => 'ex';
+sign;
WriteAll();
commit 7278ed628aa29e4718bf7450368aa74a845aa376
Author: Thomas Sibley <trs at bestpractical.com>
Date: Thu Sep 13 14:22:22 2012 -0700
Skip MYMETA.* files, release tarballs, and ctags files
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index bbeb525..b6b34f0 100755
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -13,3 +13,6 @@
^#.*#$
^\.#
\bcover_db\b
+^MYMETA\.
+\.tar\.gz$
+^\.tags
commit c171cbbabe38d08c99360ef4d853c1e539f98238
Author: Thomas Sibley <trs at bestpractical.com>
Date: Thu Sep 13 14:19:38 2012 -0700
Version 1.63
diff --git a/META.yml b/META.yml
index e74b978..a72b2f5 100644
--- a/META.yml
+++ b/META.yml
@@ -33,4 +33,4 @@ requires:
Want: 0
resources:
license: http://dev.perl.org/licenses/
-version: 1.62
+version: 1.63
diff --git a/lib/DBIx/SearchBuilder.pm b/lib/DBIx/SearchBuilder.pm
index 132d37a..d042d27 100755
--- a/lib/DBIx/SearchBuilder.pm
+++ b/lib/DBIx/SearchBuilder.pm
@@ -4,7 +4,7 @@ package DBIx::SearchBuilder;
use strict;
use warnings;
-our $VERSION = "1.62";
+our $VERSION = "1.63";
use Clone qw();
use Encode qw();
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list