summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--build/version2
-rw-r--r--configure.ac4
-rw-r--r--cpio/Makefile2
-rw-r--r--libarchive/archive.h4
-rw-r--r--tar/Makefile2
6 files changed, 9 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index ae7c70e5..86589fd5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+
+Apr 01, 2009: libarchive 2.6.990a released
Jan 04, 2008: Major refactoring of read filter support.
Dec 28, 2008: Many Windows/Visual Studio fixes from Michihiro NAKAJIMA.
diff --git a/build/version b/build/version
index 4a70a81c..18df9ed7 100644
--- a/build/version
+++ b/build/version
@@ -1 +1 @@
-2006901a
+2006990a
diff --git a/configure.ac b/configure.ac
index 1e29490a..9bb64059 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.6.901a])
-m4_define([LIBARCHIVE_VERSION_N],[2006901])
+m4_define([LIBARCHIVE_VERSION_S],[2.6.990a])
+m4_define([LIBARCHIVE_VERSION_N],[2006990])
dnl bsdtar and bsdcpio versioning tracks libarchive
m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
diff --git a/cpio/Makefile b/cpio/Makefile
index 5f128e34..ae8957dd 100644
--- a/cpio/Makefile
+++ b/cpio/Makefile
@@ -3,7 +3,7 @@
.include <bsd.own.mk>
PROG= bsdcpio
-BSDCPIO_VERSION_STRING=2.6.901a
+BSDCPIO_VERSION_STRING=2.6.990a
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 6e35b432..a74f265c 100644
--- a/libarchive/archive.h
+++ b/libarchive/archive.h
@@ -118,13 +118,13 @@ extern "C" {
* (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000)
* #endif
*/
-#define ARCHIVE_VERSION_NUMBER 2006901
+#define ARCHIVE_VERSION_NUMBER 2006990
__LA_DECL int archive_version_number(void);
/*
* Textual name/version of the library, useful for version displays.
*/
-#define ARCHIVE_VERSION_STRING "libarchive 2.6.901a"
+#define ARCHIVE_VERSION_STRING "libarchive 2.6.990a"
__LA_DECL const char * archive_version_string(void);
#if ARCHIVE_VERSION_NUMBER < 3000000
diff --git a/tar/Makefile b/tar/Makefile
index 60f555ee..4836ee4c 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.6.901a
+BSDTAR_VERSION_STRING=2.6.990a
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}