summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Campagna <gcampagna@src.gnome.org>2014-06-25 20:47:42 +0200
committerGiovanni Campagna <gcampagna@src.gnome.org>2014-06-25 20:49:07 +0200
commitbab15b54a3da37b4d54c210e6596f759248cda5e (patch)
tree56326a15e7b73b92fadc82e562a9322da9fc3812
parent3f09daa34e56ab79e43233e8aaae3e353a508210 (diff)
downloadgjs-bab15b54a3da37b4d54c210e6596f759248cda5e.tar.gz
Release 1.41.3GJS_1_41_3
For GNOME 3.13.3
-rw-r--r--NEWS18
-rw-r--r--configure.ac4
2 files changed, 20 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8693ac1a..eba5b89f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+Version 1.41.3
+--------------
+
+- Fixed GObject and Gtk overrides [Mattias Bengtsson, #727781] [#727394]
+- Fixed crashes caused by reentrancy during finalization [#725024]
+- Added a wrapper type for cairo regions [Jasper St. Pierre, #682303]
+- Several cleanups to GC [#725024]
+- Thread-safe structures are now finalized in the background, for greater
+ responsiveness [#725024] [#730030]
+- A full GC is now scheduled if after executing a piece of JS we see
+ that the RSS has grown by over 150% [Cosimo Cecchi, #725099] [#728048]
+- ParamSpecs now support methods and static methods implemented by glib
+ and exposed by gobject-introspection, in addition to the manually
+ bound fields [#725282]
+- Protototypes no longer include static properties or constructors [#725282]
+- Misc cleanups and bugfixes [Mattias Bengtsson, #727786] [#725282]
+ [Lionel Landwerlin, #728004] [Lionel Landwerlin, #727824]
+
Version 1.40.0
--------------
diff --git a/configure.ac b/configure.ac
index 819abb2c..d68bdf1e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
m4_define(pkg_major_version, 1)
-m4_define(pkg_minor_version, 40)
-m4_define(pkg_micro_version, 0)
+m4_define(pkg_minor_version, 41)
+m4_define(pkg_micro_version, 3)
m4_define(pkg_version, pkg_major_version.pkg_minor_version.pkg_micro_version)
m4_define(pkg_int_version, (pkg_major_version * 100 + pkg_minor_version) * 100 + pkg_micro_version)