diff options
-rw-r--r-- | CatDap.spec | 1 | ||||
-rw-r--r-- | Changes | 4 | ||||
-rw-r--r-- | Makefile.PL | 3 | ||||
-rw-r--r-- | catdap.yml | 1 | ||||
-rw-r--r-- | lib/CatDap.pm | 5 |
5 files changed, 8 insertions, 6 deletions
diff --git a/CatDap.spec b/CatDap.spec index 3fa1b51..06964af 100644 --- a/CatDap.spec +++ b/CatDap.spec @@ -14,7 +14,6 @@ BuildRequires: perl(Module::Install::Catalyst) BuildRequires: perl(Catalyst::Plugin::ConfigLoader) BuildRequires: perl(Catalyst::Plugin::Static::Simple) BuildRequires: perl(Catalyst::Plugin::I18N) -BuildRequires: perl(Catalyst::Plugin::Unicode::Encoding) BuildRequires: perl(Catalyst::Plugin::Authentication) BuildRequires: perl(Catalyst::Plugin::Authentication::Store::LDAP) BuildRequires: perl(Catalyst::Plugin::Authorization::Roles) @@ -1,4 +1,8 @@ This file documents the revision history for Perl extension CatDap. +0.10 2017-04-17 + - bump the min version of Catalyst::Runtime to 5.90042 + which has the Unicode::Encoding plugin in core. + 0.01 2010-10-11 09:11:10 - initial revision, generated by Catalyst diff --git a/Makefile.PL b/Makefile.PL index c93307b..f387a8f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,11 +9,10 @@ use Module::Install::Catalyst; # Complain loudly if you don't have name 'CatDap'; all_from 'lib/CatDap.pm'; -requires 'Catalyst::Runtime' => '5.80022'; +requires 'Catalyst::Runtime' => '5.90042'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Plugin::I18N'; -requires 'Catalyst::Plugin::Unicode::Encoding'; requires 'Catalyst::Plugin::Authentication'; requires 'Catalyst::Plugin::Authentication::Store::LDAP'; requires 'Catalyst::Plugin::Authorization::Roles'; @@ -9,6 +9,7 @@ name: CatDap default_view: Web +encoding: UTF-8 organisation: Mageia project_url: http://www.mageia.org/ diff --git a/lib/CatDap.pm b/lib/CatDap.pm index d53ca8f..0faed59 100644 --- a/lib/CatDap.pm +++ b/lib/CatDap.pm @@ -2,7 +2,7 @@ package CatDap; use Moose; use namespace::autoclean; -use Catalyst::Runtime 5.80; +use Catalyst::Runtime 5.90042; # Set flags and add plugins for the application # @@ -22,12 +22,11 @@ use Catalyst qw/ Authentication Authorization::Roles I18N - Unicode::Encoding /; extends 'Catalyst'; -our $VERSION = '0.01'; +our $VERSION = '0.10'; $VERSION = eval $VERSION; # Configure the application. |