summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2012-03-28 17:01:43 +0200
committerNick Schermer <nick@xfce.org>2012-03-28 17:01:43 +0200
commit430d9b11505ba360961c69aee58328b3c9aa16d9 (patch)
tree079aa667aad5e96ccfc1558fd0313d708d6a404d
parente71480b73fb7bce82412dd29434ba43a0dd02b33 (diff)
downloadlibxfce4util-430d9b11505ba360961c69aee58328b3c9aa16d9.tar.gz
Updates for release.libxfce4util-4.9.0
-rw-r--r--NEWS35
-rw-r--r--configure.in.in6
2 files changed, 38 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index a14dfb1..9934fa3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,38 @@
+4.9.0
+=====
+- Make licenses static. You can only use
+ xfce_get_license_text(...).
+- Remove unused .h files.
+- Remove xfce_strip_context(), use g_strip_context().
+- Remove XfceDesktopEntry.
+- Don't generate enum types.
+- Only link against glib.
+- Set version string to 4.10.
+- Remove spec file and rpm build.
+- Missing fallback for AC_RUN_IF_ELSE() when cross-compiling (bug #8166).
+- Fix XfceRc group parsing with brackets in name (bug #8150).
+- Reduce XfceRc structure size from from 216 to 176 bytes.
+- Use some macros and drop unneeded strlen's in XfceRc.
+- Use GSList in xfce-resource.
+- Bump verinfo to 6:0:0.
+- Translation updates (ar, et, eu, is, ko, lt, nl, nn, pt, ru,
+ sk, zh_CN, zh_TW).
+
+4.8.2
+=====
+- Change the version string to 4.8.
+- Fixed incorrect assertion in xfce_strjoin (bug #7122).
+- Fix "empty declaration" compiler warnings.
+- Update FSF address and add missing licenses.
+- Fix undef in libxfce4util.h header.
+- Remove the internal slice allocator macros.
+- Use chain to free slice instead of a loop.
+- Translation updates (ko, ru, sk, zh_CN, nl).
+
+4.8.1
+=====
+- Set xfce_version_string to 4.8.0.
+
4.8.0
=====
- Translation updates: Arabic, Greek, Polish, Romanian, Turkish.
diff --git a/configure.in.in b/configure.in.in
index eadc7e9..33d8c83 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -12,11 +12,11 @@ dnl *** Version information ***
dnl ***************************
m4_define([libxfce4util_verinfo], [6:0:0])
m4_define([libxfce4util_version_major], [4])
-m4_define([libxfce4util_version_minor], [8])
-m4_define([libxfce4util_version_micro], [1])
+m4_define([libxfce4util_version_minor], [9])
+m4_define([libxfce4util_version_micro], [0])
m4_define([libxfce4util_version_nano], []) dnl leave this empty to have no nano version
m4_define([libxfce4util_version_build], [@REVISION@])
-m4_define([libxfce4util_version_tag], [git])
+m4_define([libxfce4util_version_tag], [])
m4_define([libxfce4util_version], [libxfce4util_version_major().libxfce4util_version_minor().libxfce4util_version_micro()ifelse(libxfce4util_version_nano(), [], [], [.libxfce4util_version_nano()])ifelse(libxfce4util_version_tag(), [git], [libxfce4util_version_tag()-libxfce4util_version_build()], [])])
dnl **************************************************************