[perl-Glib] Release 1.230



commit ef41bc1c6feae180b56640a66f4e1b44cff1c3da
Author: Torsten Schönfeld <kaffeetisch gmx de>
Date:   Sun Apr 25 17:40:21 2010 +0200

    Release 1.230

 Makefile.PL |    6 +++---
 NEWS        |   17 +++++++++++++++++
 README      |    4 ++--
 lib/Glib.pm |    6 +++---
 4 files changed, 25 insertions(+), 8 deletions(-)
---
diff --git a/Makefile.PL b/Makefile.PL
index 5b4707d..6e67855 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -178,7 +178,7 @@ WriteMakefile(
     $glib ? $glib->get_makefile_vars : (),
 );
 
-=unstable
+#=unstable
 
 print <<__EOW__;
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
@@ -186,12 +186,12 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
    This is an unstable development release of Glib.  The API is not
    frozen and things are subject to change at any time.  Report any
    bugs to gtk-perl-list AT gnome DOT org as soon as possible.
-   Please use the 1.20x series for important work.
+   Please use the 1.22x series for important work.
 
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 __EOW__
 
-=cut
+#=cut
 
 =frozen
 
diff --git a/NEWS b/NEWS
index 7c47768..329521d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+Overview of changes in Glib 1.230
+=================================
+
+* Don't copy boxed objects when passing from Perl to C.  This mainly affects
+  Perl subclasses which have signal handlers that involve boxed objects and use
+  signal_chain_from_overridden() to call parent signal handlers.  With this
+  change, the parent's handlers will now operator on the same object that the
+  Perl code sees, and changes consequently propagate properly.
+* Correctly handle variables with "set" magic attached in the default
+  SET_PROPERTY implementation for custom Perl subclasses.
+* Add Glib::Param::GType support.
+* Make Glib::Flags::bool() and as_arrayref() callable as methods.
+* Allow undef for default_value in Glib::ParamSpec->string.
+* Improve the documentation in a few places.
+* Add gperl_hv_take_sv, a wrapper for hv_store, to our C API.
+* Fix some build and test failures.
+
 Overview of changes in Glib 1.221
 =================================
 
diff --git a/README b/README
index de9fe9f..be723ce 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Glib version 1.221
+Glib version 1.230
 ==================
 
 This module provides perl access to Glib and GLib's GObject libraries.
@@ -85,7 +85,7 @@ Please report bugs to the gnome-perl product in GNOME's Bugzilla:
 COPYRIGHT AND LICENSE
 ---------------------
 
-Copyright (C) 2003-2008 by the gtk2-perl team (see the file AUTHORS for the
+Copyright (C) 2003-2010 by the gtk2-perl team (see the file AUTHORS for the
 full list)
 
 This library is free software; you can redistribute it and/or modify it under
diff --git a/lib/Glib.pm b/lib/Glib.pm
index 6576e53..2b190ad 100644
--- a/lib/Glib.pm
+++ b/lib/Glib.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2003-2009 by the gtk2-perl team (see the file AUTHORS for
+# Copyright (C) 2003-2010 by the gtk2-perl team (see the file AUTHORS for
 # the full list)
 #
 # This library is free software; you can redistribute it and/or modify it under
@@ -66,7 +66,7 @@ our %EXPORT_TAGS = (
 our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
 $EXPORT_TAGS{all} = \ EXPORT_OK;
 
-our $VERSION = '1.221';
+our $VERSION = '1.230';
 
 sub dl_load_flags { $^O eq 'darwin' ? 0x00 : 0x01 }
 
@@ -664,7 +664,7 @@ patches and tests here and there.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2003-2009 by muppet and the gtk2-perl team
+Copyright 2003-2010 by muppet and the gtk2-perl team
 
 This library is free software; you can redistribute it and/or modify
 it under the terms of the Lesser General Public License (LGPL).  For



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]