From: Joerg Sonnenberger Date: Sun, 14 Mar 2010 01:59:09 +0000 (-0500) Subject: libarchive 2.8.1 X-Git-Tag: v2.8.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=431bbfd67382383fd952ae1a3f423b739af48074;p=thirdparty%2Flibarchive.git libarchive 2.8.1 SVN-Revision: 2033 --- diff --git a/NEWS b/NEWS index 19e0f6442..7adc91afd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +Mar 14, 2010: libarchive 2.8.2 released +Mar 12, 2010: Fix NULL deference for short self-extracting zip archives. +Mar 12, 2010: Don't dereference symlinks on Linux when reading ACLs. +Mar 07, 2010: Better detction of SHA2 support for old OpenSSL versions. +Mar 07, 2010: Fix parsing of input files for bsdtar -T. +Mar 07, 2010: Do not leak setup_xattr into the global namespace. + Mar 06, 2010: libarchive 2.8.1 released Mar 06, 2010: Fix build when an older libarchive is already installed Mar 03, 2010: Use O_BINARY opening files in bsdtar diff --git a/build/version b/build/version index d95239385..947dab564 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -2008001 +2008002 diff --git a/configure.ac b/configure.ac index f17ef68ec..194aa7f90 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.8.1]) -m4_define([LIBARCHIVE_VERSION_N],[2008001]) +m4_define([LIBARCHIVE_VERSION_S],[2.8.2]) +m4_define([LIBARCHIVE_VERSION_N],[2008002]) 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 10d03674a..1e059f7fe 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 2008001 +#define ARCHIVE_VERSION_NUMBER 2008002 __LA_DECL int archive_version_number(void); /* * Textual name/version of the library, useful for version displays. */ -#define ARCHIVE_VERSION_STRING "libarchive 2.8.1" +#define ARCHIVE_VERSION_STRING "libarchive 2.8.2" __LA_DECL const char * archive_version_string(void); #if ARCHIVE_VERSION_NUMBER < 3000000