]> git.imager.perl.org - imager.git/commitdiff
0.56 release
authorTony Cook <tony@develop=help.com>
Mon, 2 Apr 2007 23:58:11 +0000 (23:58 +0000)
committerTony Cook <tony@develop=help.com>
Mon, 2 Apr 2007 23:58:11 +0000 (23:58 +0000)
Changes
Imager.pm
META.yml

diff --git a/Changes b/Changes
index ad9488d999d97c98da4cb5af38e725146ffa1d0b..70f601522722541941bc643184c21c05b722474e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -17,6 +17,8 @@ Imager 0.56 -
  - switched from the svn log Changes to a manual Changes to reduce
    noise
 
+ - new sample code - samples/flasher.pl
+
 Bug fixes:
 
  - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
@@ -35,6 +37,20 @@ Bug fixes:
  - previously, reading ASCII PBM files required spaces between samples,
    even though the format doesn't require that
 
+ - improved documentation of the unsharpmask filter (I hope)
+   http://rt.cpan.org/Ticket/Display.html?id=25531
+
+ - force flushing of the output from i_tt_dump_names() and test output
+   in t/t35ttfont.t to prevent output from being mixed up.
+   https://rt.cpan.org/Ticket/Display.html?id=24859
+
+ - rewrite a conditional expression as an if() to hopefully work around
+   a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
+   https://rt.cpan.org/Ticket/Display.html?id=25561
+
+ - avoid Data::Dumper in regops.perl to support older releases of perl
+   https://rt.cpan.org/Ticket/Display.html?id=24391
+
 Imager 0.55 - 16 Dec 2006
 ===========
 
index ac235ea86be57e2d4e0e2f710d012597a32e6ba5..007c303a8bb2709f6c33c3b42e35b9c25ba193a3 100644 (file)
--- a/Imager.pm
+++ b/Imager.pm
@@ -155,7 +155,7 @@ my %attempted_to_load;
 BEGIN {
   require Exporter;
   @ISA = qw(Exporter);
-  $VERSION = '0.55';
+  $VERSION = '0.56';
   eval {
     require XSLoader;
     XSLoader::load(Imager => $VERSION);
index 9f83334297279f4d2bb6330fd64c9527c1f3e150..4490f9ff51838c3404645a2ef7335d34f23a42f3 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name: Imager
-version: 0.55
+version: 0.56
 version_from: Imager.pm
 author: Tony Cook <tony@imager.perl.org>, Arnar M. Hrafnkelsson
 abstract: Perl extension for Generating 24 bit Images
@@ -15,4 +15,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.55
+generated_by: Imager version 0.56