summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--configure.in6
2 files changed, 11 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 0116f8aa..5f214467 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+0.20.4
+=======
+- New enum value VTE_ERASE_TTY.
+- Make VTE_ERASE_AUTO send \H for backspace if terminal erase is undefined.
+- Bugs fixed in this release:
+ Bug 584281 - build: avoid double installation of xterm
+ Bug 543379 - VTE sends NUL/^@ for backspace
+
0.20.3
=======
- Bugs fixed in this release:
diff --git a/configure.in b/configure.in
index a7542b34..d0a8de7e 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
m4_define([vte_version_major],[0])
m4_define([vte_version_minor],[20])
-m4_define([vte_version_micro],[3])
+m4_define([vte_version_micro],[4])
m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro])
AC_PREREQ([2.59])
@@ -20,10 +20,10 @@ AM_MAINTAINER_MODE([enable])
# Libtool shared library versioning stuffs.
# REVISION gets incremented whenever the source code changes without adding
# an API or ABI change.
-LTVERSION_REVISION=3
+LTVERSION_REVISION=0
# CURRENT must be incremented when an API or ABI change (addition or removal)
# is made, and REVISION must be reset to 0 when this happens.
-LTVERSION_CURRENT=14
+LTVERSION_CURRENT=15
# AGE must be incremented when an API or ABI addition is made, and REVISION
# must be reset to 0 when this happens.
LTVERSION_AGE=5