diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-05-25 18:27:51 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-05-25 18:27:51 -0400 |
commit | 416b37dac95c6aa73c9ead3d6841893bfb22c5b8 (patch) | |
tree | 0bb1cf4ed759b3a1f896604c9bbb8994125c4df8 | |
parent | 7e371f09de8fb3e3af16469603523c17c721483c (diff) |
0.20.3 released0.20.3
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +0.20.3 +======= +- Bugs fixed in this release: + Bug 583129 - [python] allow passing None as command or directory option + Bug 583078 - [python] allow passing of environment as a dictionary + 0.20.2 ======= - Bugs fixed in this release: diff --git a/configure.in b/configure.in index 084c1ce..9fd93e3 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],[2]) +m4_define([vte_version_micro],[3]) m4_define([vte_version],[vte_version_major.vte_version_minor.vte_version_micro]) AC_PREREQ([2.59]) @@ -20,7 +20,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=2 +LTVERSION_REVISION=3 # 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 |