diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 25 insertions, 2 deletions
@@ -1,3 +1,12 @@ +2007-09-17 Behdad Esfahbod <behdad@gnome.org> + + Released vte-0.16.9. + + * NEWS: Updated. + + * configure.in: Bumped version to 0.16.9. + Bumped libtool version to 11:13:2. + 2007-09-05 Behdad Esfahbod <behdad@gnome.org> * perf/vim.sh: Wait for keypress when done, so one can do @@ -1,3 +1,17 @@ +0.16.9 +====== +- Slightly improved pango backend +- Misc bug fixes. +- Bugs fixed in this release: + Bug 469862 – Handling of wrapped links in gnome-terminal is broken + Bug 471901 – troubles with pad + Bug 153265 – Handle Sun Cut, Copy, Paste keys + Patch by Brian Cameron. + Bug 471484 – vteapp resize weirdness + Bug 434230 – Spaces are not underlined + Original patch by Santtu Lakkala. + Bug 450069 – vte crash on removing a terminal tab + 0.16.8 ====== - Quick followup release with no code changes, to fix missing diff --git a/configure.in b/configure.in index e6c42bb..2991628 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_PREREQ(2.56) -AC_INIT(vte, [0.16.8], +AC_INIT(vte, [0.16.9], [http://bugzilla.gnome.org/enter_bug.cgi?product=vte]) AC_CONFIG_SRCDIR([src/vte.c]) AM_INIT_AUTOMAKE(1.6) @@ -9,7 +9,7 @@ AM_CONFIG_HEADER([config.h]) # Libtool shared library versioning stuffs. # REVISION gets incremented whenever the source code changes without adding # an API or ABI change. -LTVERSION_REVISION=12 +LTVERSION_REVISION=13 # 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=11 |