diff options
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | doc/index.txt | 1 |
3 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,14 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +3.3.3 - correctly check the return code from opendir() + - fix possible infinite loop in alpm_list_remove() + - makepkg: + - quote arrays to preserve spaces in arrays (FS#16871) + - allow passing arguments with spaces + - adjust preselected option for clearing cache + - translations: + - zh_CN: fix positional parameter usage in makepkg (FS#16983) + - el: fix Y/N response translation (FS#16568) 3.3.2 - fix infinite filesize download issue (FS#16359) - fix bogus download size on TotalDownload - documentation updates diff --git a/configure.ac b/configure.ac index dada0dd8..80e41a6e 100644 --- a/configure.ac +++ b/configure.ac @@ -42,12 +42,12 @@ AC_PREREQ(2.60) # pacman_version_micro += 1 m4_define([lib_current], [4]) -m4_define([lib_revision], [2]) +m4_define([lib_revision], [3]) m4_define([lib_age], [0]) m4_define([pacman_version_major], [3]) m4_define([pacman_version_minor], [3]) -m4_define([pacman_version_micro], [2]) +m4_define([pacman_version_micro], [3]) m4_define([pacman_version], [pacman_version_major.pacman_version_minor.pacman_version_micro]) diff --git a/doc/index.txt b/doc/index.txt index 8cd9b414..646a5dce 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -62,6 +62,7 @@ Releases `------------`------- Date Version --------------------- +2009-11-10 v3.3.3 2009-10-05 v3.3.2 2009-09-22 v3.3.1 2009-08-02 v3.3.0 |