[perl-Glib] Stable release 1.300



commit 15b94381e6f385b208d1722cbaa851a8caad9f4c
Author: Brian Manning <bmanning src gnome org>
Date:   Sun May 19 18:01:31 2013 -0700

    Stable release 1.300

 Makefile.PL                 |    9 +++++----
 NEWS                        |   16 ++++++++++++++++
 lib/Glib.pm                 |    2 +-
 lib/Glib/CodeGen.pm         |    2 +-
 lib/Glib/GenPod.pm          |    2 +-
 lib/Glib/MakeHelper.pm      |    2 +-
 lib/Glib/Object/Subclass.pm |    2 +-
 lib/Glib/ParseXSDoc.pm      |    2 +-
 8 files changed, 27 insertions(+), 10 deletions(-)
---
diff --git a/Makefile.PL b/Makefile.PL
index a9503c5..a59cc8c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -96,7 +96,8 @@ my %meta_merge = (
         },
         author              =>
             ['gtk2-perl Team <gtk-perl-list at gnome dot org>'],
-        release_status      => 'unstable',
+        #release_status      => 'unstable',
+        release_status      => 'stable',
         # valid values: https://metacpan.org/module/CPAN::Meta::Spec#license
         license             => 'lgpl_2_1',
         resources => {
@@ -204,7 +205,7 @@ WriteMakefile(
     $glib ? $glib->get_makefile_vars : (),
 );
 
-#=unstable
+=unstable
 
 print <<__EOW__;
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
@@ -212,12 +213,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.28x series for important work.
+   Please use the 1.30x series for important work.
 
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 __EOW__
 
-#=cut
+=cut
 
 =frozen
 
diff --git a/NEWS b/NEWS
index 7e82af7..c0bb37d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+Overview of changes in Glib 1.300 (stable)
+==========================================
+
+* Stable release to coincide with the release of Perl 5.18.0
+
+ Since 1.28x (The previous stable release)
+ -----------------------------------------
+ * Ensure timely destruction of initial wrapper of custom subclasses
+ * Start changing module version numbers in all Perl modules in the
+   distribution, not just lib/Glib.pm; (Bugzilla #690464)
+ * Make Glib::Object subclassing more robust.  This should in particular fix
+   issues revealed by the change to hash randomization introduced in perl
+   5.17.6.
+ * Correctly handle utf8-encoded strings in GPerlArgv.  This should fix issues
+   seen with utf8-encoded strings in @ARGV with, for example, Gtk2->init.
+
 Overview of changes in Glib 1.291 (unstable)
 ============================================
 
diff --git a/lib/Glib.pm b/lib/Glib.pm
index a207147..bdf257a 100644
--- a/lib/Glib.pm
+++ b/lib/Glib.pm
@@ -27,7 +27,7 @@ use Exporter;
 require DynaLoader;
 our @ISA = qw(DynaLoader Exporter);
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 use constant {
        TRUE  => 1,
diff --git a/lib/Glib/CodeGen.pm b/lib/Glib/CodeGen.pm
index 1f3a022..7523e14 100644
--- a/lib/Glib/CodeGen.pm
+++ b/lib/Glib/CodeGen.pm
@@ -5,7 +5,7 @@ use warnings;
 use Carp;
 use IO::File;
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 # type handlers should look like this:
 #    sub gen_foo_stuff {
diff --git a/lib/Glib/GenPod.pm b/lib/Glib/GenPod.pm
index a03ca65..c7f4053 100644
--- a/lib/Glib/GenPod.pm
+++ b/lib/Glib/GenPod.pm
@@ -9,7 +9,7 @@
 
 package Glib::GenPod;
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 use strict;
 use warnings;
diff --git a/lib/Glib/MakeHelper.pm b/lib/Glib/MakeHelper.pm
index 88248ca..e3fa3bc 100644
--- a/lib/Glib/MakeHelper.pm
+++ b/lib/Glib/MakeHelper.pm
@@ -4,7 +4,7 @@
 
 package Glib::MakeHelper;
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 =head1 NAME
 
diff --git a/lib/Glib/Object/Subclass.pm b/lib/Glib/Object/Subclass.pm
index 8c3e9c8..0ba756b 100644
--- a/lib/Glib/Object/Subclass.pm
+++ b/lib/Glib/Object/Subclass.pm
@@ -20,7 +20,7 @@
 
 package Glib::Object::Subclass;
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 use Glib;
 
diff --git a/lib/Glib/ParseXSDoc.pm b/lib/Glib/ParseXSDoc.pm
index 1e6bc0a..f39f030 100644
--- a/lib/Glib/ParseXSDoc.pm
+++ b/lib/Glib/ParseXSDoc.pm
@@ -13,7 +13,7 @@ our @EXPORT = qw(
        xsdocparse
 );
 
-our $VERSION = '1.291';
+our $VERSION = '1.300';
 
 our $NOISY = $ENV{NOISYDOC};
 


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