]> git.imager.perl.org - imager.git/commitdiff
bump to 0.55: Imager-0.55
authorTony Cook <tony@develop=help.com>
Sat, 16 Dec 2006 22:23:17 +0000 (22:23 +0000)
committerTony Cook <tony@develop=help.com>
Sat, 16 Dec 2006 22:23:17 +0000 (22:23 +0000)
This is primarily a bug fix release.

Note: Test::More is now a pre-requisite for Imager and is no longer
bundled.

There is one new feature:

- the Win32 font driver now supports UTF8 (RT 22166)

Several bugs were fixed:

- the string() method would not output the string "0" (RT 21770)

- fills.c was failing to compile on Solaris 10 (compiler unknown) (RT 21944)

- the gif_disposal and gif_user_input tags weren't being read from the file
  correctly (RT 22192)

- Win32 font driver fixes:
  - the global descent value from bounding box was the wrong sign
  - if the first or last glyph overflowed the left or right side of
    the advance width they would be clipped

- gif.c was failing to build under MSVC (RT 23922)

- in some cases strings passed to the string() method were treated as
  terminated by NUL (chr 0) (RT 21770)

- on "MSWin32" perl builds we now link to -lzlib instead of -lz since
  that's the default build name for zlib on Win32. (RT 23064)

- search $Config{incpath} for headers too, which we should have been
  doing all along.

Imager.pm
META.yml

index de0744765257c9d6b4f1d77e681642f91ae20b79..3bfbad1448a91cb8468f04dba8f4a76b83826f50 100644 (file)
--- a/Imager.pm
+++ b/Imager.pm
@@ -155,7 +155,7 @@ my %attempted_to_load;
 BEGIN {
   require Exporter;
   @ISA = qw(Exporter);
-  $VERSION = '0.54';
+  $VERSION = '0.55';
   eval {
     require XSLoader;
     XSLoader::load(Imager => $VERSION);
index 7ca4a941c2dab8865d8907ffd99af08232c7c1e7..9f83334297279f4d2bb6330fd64c9527c1f3e150 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name: Imager
-version: 0.54
+version: 0.55
 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.54
+generated_by: Imager version 0.55