From: Tomas Doran Date: Mon, 15 Aug 2011 08:36:06 +0000 (+0100) Subject: Do not inadvertently add a digit to the version no X-Git-Tag: 5.9000~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=63a50bd691370dbe53aea733ef44f34d5e4e8f06 Do not inadvertently add a digit to the version no --- diff --git a/Changes b/Changes index 0d49ca5..3c2d211 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. -5.90000 - UNRELEASED +5.9000 - UNRELEASED Major changes in this release: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 7232fcc..48a5096 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.90000'; +our $VERSION = '5.9000'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 6badfcd..85da737 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.90000'; +our $VERSION = '5.9000'; =head1 NAME