From: Ben Hutchings <ben@decadent.org.uk>
Date: Tue, 4 Nov 2008 03:03:08 +0000 (+0000)
Subject: Maypole-2.10.tar.gz
X-Git-Tag: 2.10
X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=b8b992790ac51e41943f2747b52afed0228885c6;p=maypole.git

Maypole-2.10.tar.gz
---

diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..3651033
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,19 @@
+AUTHORS
+-------
+
+The following people have written and documented Maypole:
+
+Simon Cozens - Original Author
+Sebastian Riedel - Maintainer
+Simon Flack - Maintainer
+Aaron Trevena - Maintainer
+Dave Howarth - Contributor
+
+Thanks also to for fixes and other contributions:
+
+Randal Schwartz
+Jester
+David Baird
+David Howorth
+Marcus Ramberg
+Steven Simms
diff --git a/META.yml b/META.yml
index ce2b294..02da7a5 100644
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Maypole
-version:      2.10_pre3
+version:      2.10
 version_from: lib/Maypole.pm
 installdirs:  site
 requires:
diff --git a/lib/Maypole/Config.pm b/lib/Maypole/Config.pm
index a2660d7..88dc8ee 100644
--- a/lib/Maypole/Config.pm
+++ b/lib/Maypole/Config.pm
@@ -5,7 +5,7 @@ use attributes ();
 use strict;
 use warnings;
 
-our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/;
+our $VERSION = "1." . sprintf "%04d", q$Rev: 333 $ =~ /: (\d+)/;
 
 # Public accessors.
 __PACKAGE__->mk_accessors(
diff --git a/lib/Maypole/Constants.pm b/lib/Maypole/Constants.pm
index 09e7d4b..9c018f9 100644
--- a/lib/Maypole/Constants.pm
+++ b/lib/Maypole/Constants.pm
@@ -5,7 +5,7 @@ use constant OK       => 0;
 use constant DECLINED => -1;
 use constant ERROR    => -1;
 our @EXPORT = qw(OK DECLINED ERROR);
-our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/;
+our $VERSION = "1." . sprintf "%04d", q$Rev: 354 $ =~ /: (\d+)/;
 
 1;
 
diff --git a/lib/Maypole/Headers.pm b/lib/Maypole/Headers.pm
index 33edc1b..dff1ced 100644
--- a/lib/Maypole/Headers.pm
+++ b/lib/Maypole/Headers.pm
@@ -4,7 +4,7 @@ use base 'HTTP::Headers';
 use strict;
 use warnings;
 
-our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/;
+our $VERSION = "1." . sprintf "%04d", q$Rev: 324 $ =~ /: (\d+)/;
 
 sub get {
     shift->header(shift);
diff --git a/lib/Maypole/View/TT.pm b/lib/Maypole/View/TT.pm
index 13130e5..1a16a84 100644
--- a/lib/Maypole/View/TT.pm
+++ b/lib/Maypole/View/TT.pm
@@ -5,7 +5,7 @@ use Template;
 use File::Spec::Functions qw(catdir tmpdir);
 
 use strict;
-our $VERSION = "1." . sprintf "%04d", q$Rev$ =~ /: (\d+)/;
+our $VERSION = "1." . sprintf "%04d", q$Rev: 333 $ =~ /: (\d+)/;
 
 sub template {
     my ( $self, $r ) = @_;