summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS13
-rw-r--r--configure.ac.in8
2 files changed, 17 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 3461c8f..65908e4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+4.13.0
+======
+
+- Merge exo-csource modifications in xdt-csource
+- xdt-csource will replace exo-csource (projects using exo-csource needs to be updated)
+- The work started in issue #6449 but the full migration has never been done.
+- Remove svn support in xdt-autogen
+- Simplify a bit the XDT_AUTOGEN_REQUIRED_VERSION detection
+- Remove the check of the unused doc submodule
+- Remove useless macros: m4macros/xdt-python.m4 and m4macros/xdt-xfce.m4 are not used
+- Remove xdt-commit, used to generate Changelog, now done via make distcheck
+- No -Wshadow flag for enable_debug=full (bug #11637). Use it only for enable_debug=yes.
+
4.12.0
======
- Bump version.
diff --git a/configure.ac.in b/configure.ac.in
index dc8d50a..8242599 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,5 +1,5 @@
dnl
-dnl Copyright (c) 2002-2015
+dnl Copyright (c) 2002-2019
dnl The Xfce development team. All rights reserved.
dnl
dnl Written for Xfce by Benedikt Meurer <benny@xfce.org>.
@@ -9,11 +9,11 @@ dnl ***************************
dnl *** Version information ***
dnl ***************************
m4_define([xdt_version_major], [4])
-m4_define([xdt_version_minor], [12])
+m4_define([xdt_version_minor], [13])
m4_define([xdt_version_micro], [0])
m4_define([xdt_version_nano], [])
m4_define([xdt_version_build], [@REVISION@])
-m4_define([xdt_version_tag], [git])
+m4_define([xdt_version_tag], [])
m4_define([xdt_version], [xdt_version_major().xdt_version_minor().xdt_version_micro()ifelse(xdt_version_nano(), [], [], [.xdt_version_nano()])ifelse(xdt_version_tag(), [git], [xdt_version_tag()-xdt_version_build()], [])])
@@ -71,7 +71,7 @@ AC_CHECK_HEADERS([libintl.h locale.h memory.h stdio.h stdlib.h string.h])
dnl ***********************************
dnl *** Check for required packages ***
dnl ***********************************
-PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.30.0])
+PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.42.0])
dnl **********************
dnl *** Generate files ***