From: Tim Kientzle Date: Sun, 3 Jan 2010 18:17:42 +0000 (-0500) Subject: Libarchive 2.7.902a test release. X-Git-Tag: v2.8.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9242a7a7430f5467d5520196d8128242c884704c;p=thirdparty%2Flibarchive.git Libarchive 2.7.902a test release. SVN-Revision: 1795 --- diff --git a/NEWS b/NEWS index 32fdc76cd..bd0d19615 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ + +Jan 02, 2010: libarchive 2.7.902a released (test release for 2.8) +Jan 02, 2010: Fix tar/test/test_windows on MinGW +Jan 02, 2010: Fix memory leaks in libarchive tests +Jan 01, 2010: Fix memory leak when filter startup fails + Dec 27, 2009: libarchive 2.7.901a released (test release for 2.8) Aug 04, 2009: libarchive 2.7.1 released diff --git a/build/version b/build/version index 805c56945..e48f63102 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -2007901a +2007902a diff --git a/configure.ac b/configure.ac index b3aeb27c7..c5e2a36c9 100644 --- a/configure.ac +++ b/configure.ac @@ -4,8 +4,8 @@ dnl First, define all of the version numbers up front. dnl In particular, this allows the version macro to be used in AC_INIT dnl These first two version numbers are updated automatically on each release. -m4_define([LIBARCHIVE_VERSION_S],[2.7.901a]) -m4_define([LIBARCHIVE_VERSION_N],[2007901]) +m4_define([LIBARCHIVE_VERSION_S],[2.7.902a]) +m4_define([LIBARCHIVE_VERSION_N],[2007902]) dnl bsdtar and bsdcpio versioning tracks libarchive m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S()) diff --git a/libarchive/archive.h b/libarchive/archive.h index d17336ea5..000abaeef 100644 --- a/libarchive/archive.h +++ b/libarchive/archive.h @@ -129,13 +129,13 @@ extern "C" { * (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000) * #endif */ -#define ARCHIVE_VERSION_NUMBER 2007901 +#define ARCHIVE_VERSION_NUMBER 2007902 __LA_DECL int archive_version_number(void); /* * Textual name/version of the library, useful for version displays. */ -#define ARCHIVE_VERSION_STRING "libarchive 2.7.901a" +#define ARCHIVE_VERSION_STRING "libarchive 2.7.902a" __LA_DECL const char * archive_version_string(void); #if ARCHIVE_VERSION_NUMBER < 3000000