]> git.decadent.org.uk Git - maypole.git/commitdiff
This is 1.5.
authorSimon Cozens <simon@simon-cozens.org>
Mon, 21 Jun 2004 13:41:09 +0000 (13:41 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Mon, 21 Jun 2004 13:41:09 +0000 (13:41 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@156 48953598-375a-da11-a14b-00016c27c3ee

Changes
META.yml
lib/Maypole.pm

diff --git a/Changes b/Changes
index ff38f30525c8ffafbcf5971647b69df8aea24f5e..94b1e43c4a8f604a4531e8f647bf4aa20db9733d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,21 @@
 Revision history for Perl extension Maypole 
 
+1.5   Mon Jun 21 14:36:54 BST 2004
+    - CLI mode correctly uses Constants module
+    - Template footers as well as headers (Markus Ramberg)
+    - Fix problems on failed object create (Jesse Shiedlower)
+    - Fix related() to deal with latest version of Class::DBI (Markus)
+    - Add sample CSS to distribution
+    - Maypole::Model::CDBI::Plain, for those who already have a CDBI set
+      of classes set up
+    - Friendlier errors when a template can't be found
+    - Don't authenticate without a model class
+    - #6569 Passing DBI options in setup() (Mickael Joanne)
+    - #6571 User-defined ok_tables: patch
+    - #6572 Makefile patch: require up-to-date CBDI::AsForm (Markus Ramberg)
+    - #6573 Set empty params to '' instead of undef (Jody Belka)
+    - #6617 Required cols patch in CDBI.pm (Jesse Sheidlower)
+
 1.4   Fri Apr 16 18:11:41 BST 2004
     - Much, much more documentation
     - CLI debugging mode
index 97c00810db4cf761ad7ec67f593baf6ebd74cd65..d081b0d1226b5cbdad44a9abacfcc462d15004bb 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,20 +1,22 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Maypole
-version:      1.4
+version:      1.5
 version_from: lib/Maypole.pm
 installdirs:  site
 requires:
     Apache::Request:               0
     CGI::Untaint:                  0
+    Class::DBI:                    0.96
     Class::DBI::AbstractSearch:    0
-    Class::DBI::AsForm:            0
-    Class::DBI::FromCGI:           0
+    Class::DBI::AsForm:            2.2
+    Class::DBI::FromCGI:           0.94
     Class::DBI::Loader:            0.02
     Class::DBI::Loader::Relationship: 0
     Class::DBI::Pager:             0
     Class::DBI::Plugin::RetrieveAll: 0
     Template:                      0
+    Template::Plugin::Class:       0
     UNIVERSAL::moniker:            0
     UNIVERSAL::require:            0
 
index dd9b4c8af479fe8a9979ff0de0d5d0660a76dad3..6cecb930166c2e323ea60a8c459b39c97bc723ba 100644 (file)
@@ -4,7 +4,7 @@ use attributes ();
 use UNIVERSAL::require;
 use strict;
 use warnings;
-our $VERSION = "1.4";
+our $VERSION = "1.5";
 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
 __PACKAGE__->mk_accessors ( qw( ar params query objects model_class
 args action template ));