diff options
-rw-r--r-- | NEWS | 40 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 42 insertions, 2 deletions
@@ -1,3 +1,43 @@ +2.60.0 (stable): + +Glib: +* Add DateTime::get_timezone() + Add KeyFile::get_locale_for_key() + Add TimeZone::get_identifier() + (Kjell Ahlstedt) +* Add Value_RefPtrBoxed<> + Add Value<std::vector<string>> specializations and other Value + specializations that are necessary for _WRAP_PROPERTY + (Kjell Ahlstedt) +* Object construction: Add custom class init and instance init functions + (Kjell Ahlstedt) Issue #33 + +Gio: +* Add AppInfo::launch_uris_async() and launch_uris_async() + Add DBusConnection::get_flags() and property_flags() + (Kjell Ahlstedt) +* Settings: Add property_settings_schema() + (Kjell Ahlstedt) +* TlsClientConnection: Deprecate property_accepted_cas() + (Kjell Ahlstedt) +* ThemedIcon: Add create(const std::vector<Glib::ustring>& iconnames) + (Kjell Ahlstedt) +* Remove NO_GTYPE from some _WRAP_ENUMs + (Kjell Ahlstedt) Issue #37 (Jan Tojnar) +* TlsConnection: Deprecate rehandshake API + (Kjell Ahlstedt) +* Application: Add signal_name_lost() + (Kjell Ahlstedt) + +gmmproc: +* Add _IS_REFCOUNTED_BOXEDTYPE + (Kjell Ahlstedt) + +Build: +* Require glib-2.0 >= 2.59.2 + (Kjell Ahlstedt) + + 2.58.1 (stable): gmmproc: diff --git a/configure.ac b/configure.ac index b86c8f3c..1e6e40e2 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see <http://www.gnu.org/licenses/>. -AC_INIT([glibmm], [2.58.1], +AC_INIT([glibmm], [2.60.0], [https://gitlab.gnome.org/GNOME/glibmm/issues], [glibmm], [http://www.gtkmm.org/]) AC_PREREQ([2.59]) @@ -82,7 +82,7 @@ AS_IF([test "x$enable_static" = xyes], AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library]) ]) -glibreq='2.0 >= 2.55.1' +glibreq='2.0 >= 2.59.2' GLIBMM_MODULES="sigc++-2.0 >= 2.9.1 glib-$glibreq gobject-$glibreq gmodule-$glibreq" GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq" |