diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-06-01 17:29:53 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-06-01 17:29:53 -0400 |
commit | 185383d2ff114b16296e3fd203d89e69571c4221 (patch) | |
tree | 1c718b822927922449929bb841d49a56d6da65da | |
parent | c38b7315abc067a529f4420ead5bde2b6b25be82 (diff) |
Release 0.20.40.20.4
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 11 insertions, 3 deletions
@@ -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 a7542b3..d0a8de7 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 |