2.7.1

SVN-Revision: 1339
diff --git a/NEWS b/NEWS
index de617c3..68700b7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,12 @@
 
+Aug 04, 2009: libarchive 2.7.1 released
+
+Jul 20, 2009: Suppress bogus warning about unxz
+Jul 19, 2009: Support Cygwin 1.7
+Jun 11, 2009: Support lzma/xz files compressed with larger buffer sizes.
+May 24, 2009: Handle gzip files signed with OpenBSD "gzsig" program.
+May 07, 2009: Avoid false failures when reading from pipe.
+
 Apr 16, 2009: libarchive 2.7.0 released
 
 Apr 10, 2009: libarchive 2.6.992a released
diff --git a/build/version b/build/version
index 3a01fdf..4073001 100644
--- a/build/version
+++ b/build/version
@@ -1 +1 @@
-2007000
+2007001
diff --git a/configure.ac b/configure.ac
index cf29a34..c364e44 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,8 +4,8 @@
 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.0])
-m4_define([LIBARCHIVE_VERSION_N],[2007000])
+m4_define([LIBARCHIVE_VERSION_S],[2.7.1])
+m4_define([LIBARCHIVE_VERSION_N],[2007001])
 
 dnl bsdtar and bsdcpio versioning tracks libarchive
 m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
diff --git a/cpio/Makefile b/cpio/Makefile
index aee541b..f37ced8 100644
--- a/cpio/Makefile
+++ b/cpio/Makefile
@@ -3,7 +3,7 @@
 .include <bsd.own.mk>
 
 PROG=	bsdcpio
-BSDCPIO_VERSION_STRING=2.7.0
+BSDCPIO_VERSION_STRING=2.7.1
 SRCS=	cpio.c cmdline.c err.c matching.c pathmatch.c
 WARNS?=	6
 DPADD=	${LIBARCHIVE} ${LIBZ} ${LIBBZ2}
diff --git a/libarchive/archive.h b/libarchive/archive.h
index 0b3f8e1..917c19a 100644
--- a/libarchive/archive.h
+++ b/libarchive/archive.h
@@ -118,13 +118,13 @@
  *             (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000)
  * #endif
  */
-#define	ARCHIVE_VERSION_NUMBER 2007000
+#define	ARCHIVE_VERSION_NUMBER 2007001
 __LA_DECL int		archive_version_number(void);
 
 /*
  * Textual name/version of the library, useful for version displays.
  */
-#define	ARCHIVE_VERSION_STRING "libarchive 2.7.0"
+#define	ARCHIVE_VERSION_STRING "libarchive 2.7.1"
 __LA_DECL const char *	archive_version_string(void);
 
 #if ARCHIVE_VERSION_NUMBER < 3000000
diff --git a/tar/Makefile b/tar/Makefile
index c247580..8705a76 100644
--- a/tar/Makefile
+++ b/tar/Makefile
@@ -1,7 +1,7 @@
 # $FreeBSD: src/usr.bin/tar/Makefile,v 1.40 2008/12/06 07:38:14 kientzle Exp $
 
 PROG=	bsdtar
-BSDTAR_VERSION_STRING=2.7.0
+BSDTAR_VERSION_STRING=2.7.1
 SRCS=	bsdtar.c cmdline.c getdate.c matching.c read.c siginfo.c subst.c tree.c util.c write.c
 WARNS?=	5
 DPADD=	${LIBARCHIVE} ${LIBBZ2} ${LIBZ}