summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-09-08 11:34:36 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-09-08 11:34:36 -0400
commita37a6377089b5f856043b3660a8380326f8c89a8 (patch)
tree39bf0d8ea94480b2f849cf60d49529a24e7c14cd
parentf42c894d767ecf9a5a43355d5b10c132945f66e8 (diff)
Release 0.21.50.21.5
-rw-r--r--NEWS6
-rw-r--r--configure.in4
2 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 931454e..98fff13 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+0.21.5
+=======
+- Finish ring rewrite. Scrollback buffer consumes ten times less
+ memory now, and better, doesn't allocate from the heap, so closing
+ tabs actually releases memory.
+
0.21.4
=======
- Remove another stale assert()
diff --git a/configure.in b/configure.in
index d0257fc..f1cbe25 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
m4_define([vte_version_major],[0])
m4_define([vte_version_minor],[21])
-m4_define([vte_version_micro],[4])
+m4_define([vte_version_micro],[5])
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=3
+LTVERSION_REVISION=4
# 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=17