From: Tomas Doran Date: Mon, 15 Aug 2011 21:45:03 +0000 (+0100) Subject: Version 5.90001. Correct no of digits in VERSION - DOH X-Git-Tag: 5.90001^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=3143ee5f686e48785bc13cf756a4dde97aae682e Version 5.90001. Correct no of digits in VERSION - DOH --- diff --git a/Changes b/Changes index 11245b8..6ee8ca7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ # This file documents the revision history for Perl extension Catalyst. +5.90001 - 2011-08-15 22:42 + + Realise that we accidentally chopped a digit off the versioning scheme + without anyone noticing, which is a bad thing. + + Feel like a fool. Well done t0m. + + Cut another release. + 5.9000 - 2011-08-15 22:18 See Catalyst::Delta for the major changes in this release. diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 48a5096..6621825 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -84,7 +84,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.9000'; +our $VERSION = '5.90001'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 85da737..5104914 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008004; } # Remember to update this in Catalyst as well! -our $VERSION = '5.9000'; +our $VERSION = '5.90001'; =head1 NAME