[Jifty-commit] jifty-dbi branch, master, updated. 0.75-4-gd3d7490

Jifty commits jifty-commit at lists.jifty.org
Mon Jun 17 18:12:52 EDT 2013


The branch, master has been updated
       via  d3d7490a8349e78296ed248f1d873376f63c7aa9 (commit)
       via  e49753a94abd5c13df7eb9a547e7d2e32a6dbc79 (commit)
       via  76fe35598698796ac3dce2d643e2e71b0318cc54 (commit)
       via  fb3ca98ceb63a4f3549d1fa446aa3c175240091f (commit)
      from  a455897ff87255e29fc94bf59a0be22ab108a92c (commit)

Summary of changes:
 Changes          | 6 ++++++
 META.yml         | 3 ++-
 Makefile.PL      | 4 ++--
 lib/Jifty/DBI.pm | 2 +-
 4 files changed, 11 insertions(+), 4 deletions(-)

- Log -----------------------------------------------------------------
commit fb3ca98ceb63a4f3549d1fa446aa3c175240091f
Author: Alexandr Ciornii <alexchorny at gmail.com>
Date:   Wed Jan 30 12:29:54 2013 +0200

    Cache::Memcached has installation problems on Windows, so do not require it by default

diff --git a/Makefile.PL b/Makefile.PL
index 1f23d3f..4665ee6 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -30,7 +30,7 @@ build_requires('DBD::SQLite' => 1.14);
 no_index directory => 'ex';
 features( 
     'Memcached support' => [
-        -default => 1,
+        -default => ($^O eq 'MSWin32'?0:1),
         'Cache::Memcached' => ''
     ],
     'YAML filter' => [

commit 76fe35598698796ac3dce2d643e2e71b0318cc54
Author: Alexandr Ciornii <alexchorny at gmail.com>
Date:   Wed Jan 30 12:41:01 2013 +0200

    information about repository in META.yml

diff --git a/Makefile.PL b/Makefile.PL
index 4665ee6..ebd5715 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,6 +3,7 @@ name ('Jifty-DBI');
 license ('perl');
 version_from('lib/Jifty/DBI.pm');
 perl_version('5.8.3');
+repository('https://github.com/bestpractical/jifty-dbi');
 requires('Cache::Simple::TimedExpiry' => '0.21');
 requires('Class::Accessor::Fast' => 0);
 requires('Class::Data::Inheritable');
@@ -49,4 +50,3 @@ features(
 );
 auto_install();
 &WriteAll;
-

commit e49753a94abd5c13df7eb9a547e7d2e32a6dbc79
Merge: a455897 76fe355
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Mon Jun 17 15:05:55 2013 -0700

    Merge branch 'pr/4'


commit d3d7490a8349e78296ed248f1d873376f63c7aa9
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Mon Jun 17 15:12:34 2013 -0700

    Releng 0.76

diff --git a/Changes b/Changes
index 488ecd2..56634ab 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Jifty::DBI.
 
+0.76 2013-06-17
+    * Provide source repository info in metadata
+    * Default Cached::Memcached dependency off on Windows due to known build problems
+
+    Thanks to Alexandr Ciornii for both.
+
 0.75 2013-01-29
 - Bug fixes:
     * backport a sort order fix for Pg handles from Searchbuilder
diff --git a/META.yml b/META.yml
index 46b325f..b568fb8 100644
--- a/META.yml
+++ b/META.yml
@@ -48,4 +48,5 @@ requires:
   version: 0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.75
+  repository: https://github.com/bestpractical/jifty-dbi
+version: 0.76
diff --git a/lib/Jifty/DBI.pm b/lib/Jifty/DBI.pm
index bb944b4..686210d 100644
--- a/lib/Jifty/DBI.pm
+++ b/lib/Jifty/DBI.pm
@@ -2,7 +2,7 @@ package Jifty::DBI;
 use warnings;
 use strict;
 
-$Jifty::DBI::VERSION = '0.75';
+$Jifty::DBI::VERSION = '0.76';
 
 =head1 NAME
 

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


More information about the Jifty-commit mailing list