]> git.imager.perl.org - imager.git/commitdiff
0.64 release
authorTony Cook <tony@develop=help.com>
Wed, 23 Apr 2008 04:07:56 +0000 (04:07 +0000)
committerTony Cook <tony@develop=help.com>
Wed, 23 Apr 2008 04:07:56 +0000 (04:07 +0000)
Changes
Imager.pm
META.yml

diff --git a/Changes b/Changes
index 2e60632d7dfcdce939ce9062f2d289242aeea6ae..c410320fb71206057bb7114f6e28b006a75dac37 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,10 +1,18 @@
 Imager release history.  Older releases can be found in Changes.old
 
-Imager 0.64 - unreleased
+Imager 0.64 - 23 April 2008
 ===========
 
+This is a bug fix release.  This includes a fix for a possible
+security issue.
+
 Bug fixes:
 
+ - Possible security issue: The floating point sample path for image
+   based fills had a buffer overflow.  This would overwrite the end of
+   a malloc()ed buffer with double precision floats.
+   http://rt.cpan.org/Ticket/Display.html?id=35324
+
  - check that the result of fileno($fh) is defined rather than simply
    true when read() or write() is supplied with an fh parameter.
    http://rt.cpan.org/Ticket/Display.html?id=35139
@@ -24,10 +32,6 @@ Bug fixes:
 
  - fixed a related problem for image fills.
 
- - Possible security issue: The floating point sample path for image
-   based fills had a buffer overflow.  This would overwrite the end of
-   a malloc()ed buffer with double precision floats.
-
 Imager 0.63 - 7 April 2008
 ===========
 
index 446bd22c6306c33e331184ac0b1b763467889308..b5ba3723e69ec7c706bccc42e89500987c70ee20 100644 (file)
--- a/Imager.pm
+++ b/Imager.pm
@@ -173,7 +173,7 @@ my %defaults;
 BEGIN {
   require Exporter;
   @ISA = qw(Exporter);
-  $VERSION = '0.63';
+  $VERSION = '0.64';
   eval {
     require XSLoader;
     XSLoader::load(Imager => $VERSION);
index ab7abce81bfbddb9e474c77ac4036f6a393f3ea1..f087c4a3faeb5068b49e55519b770f6905312587 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name: Imager
-version: 0.63
+version: 0.64
 version_from: Imager.pm
 author:
  - Tony Cook <tony@imager.perl.org>
@@ -17,4 +17,4 @@ distribution_type: module
 meta-spec:
   version: 1.3
   url: http://module-build.sourceforge.net/META-spec-v1.3.html
-generated_by: Imager version 0.63
+generated_by: Imager version 0.64