The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.yml 11
lib/Geometry/Primitive/Bezier.pm 13
lib/Geometry/Primitive.pm 11
4 files changed (This is a version diff) 38
@@ -1,5 +1,8 @@
 Revision history for Geometry-Primitive
 
+0.24    February 16, 2014
+  - Apply encoding patch from Debian
+
 0.22    January 9th, 2009
   - Default Dimension width and height to 0
 
@@ -29,4 +29,4 @@ requires:
   MooseX::Storage: 0.23
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.23
+version: 0.24
@@ -72,6 +72,8 @@ no Moose;
 
 __END__
 
+=encoding UTF-8
+
 =head1 NAME
 
 Geometry::Primitive::Bezier - Cubic Bézier Curve
@@ -143,4 +145,4 @@ Cory Watson <gphat@cpan.org>
 =head1 COPYRIGHT & LICENSE
 
 You can redistribute and/or modify this code under the same terms as Perl
-itself.
\ No newline at end of file
+itself.
@@ -2,7 +2,7 @@ package Geometry::Primitive;
 use strict;
 use warnings;
 
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 our $AUTHORITY = 'cpan:GPHAT';
 
 1;