diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-09-25 17:18:16 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-09-25 17:18:16 -0400 |
commit | 3e1738a4b962dc339cddd66a4504b198ae80fe38 (patch) | |
tree | 959b1bb4f3f98c90467ddf3e294c90e245c6737b | |
parent | c87f6a7dc778bb75aa6defeceda3505028c0430e (diff) |
Release 0.22.10.22.1
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -1,3 +1,13 @@ +0.22.1 +======= +- Fix crash on terminal reset +- Fix build on Solaris +- Bugs fixed in this release: + Bug 596365 - libvte crashes when issueing 'reset' in a terminal + Bug 588033 - background tabs may lose lines off the bottom of the scrollback + Bug 596163 - Doesn't display expected background color in ncurses apps + Bug 596011 - Problem compiling vte 0.22.0 on Solaris + 0.22.0 ======= - New stable release series diff --git a/configure.in b/configure.in index 4a15c62..8940a5b 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ m4_define([vte_version_major],[0]) m4_define([vte_version_minor],[22]) -m4_define([vte_version_micro],[0]) +m4_define([vte_version_micro],[1]) m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro]) AC_PREREQ([2.59]) @@ -22,7 +22,7 @@ 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=0 +LTVERSION_REVISION=1 # 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=18 |