]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Update NEWS with a few of the things that have happened
authorTim Kientzle <kientzle@gmail.com>
Sun, 9 Nov 2008 18:00:18 +0000 (13:00 -0500)
committerTim Kientzle <kientzle@gmail.com>
Sun, 9 Nov 2008 18:00:18 +0000 (13:00 -0500)
since 2.5.5 was released.  I still need to dig through old
commit messages to fill this in further before releasing 2.6.0.

Bump the version numbers to 2.5.901 to reflect the pre-release
status.  Bump bsdcpio version to 1.1.0.

SVN-Revision: 243

NEWS
configure.ac
cpio/Makefile
libarchive/archive.h
tar/Makefile
version

diff --git a/NEWS b/NEWS
index 36005fd1e9ceddd6c38f454f8dcdc4272fe3f316..5ca37c4040d8630743804a8ac4f6f6e7bfdd1de6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,25 @@
 
+Nov 08, 2008: libarchive 2.5.901 released
+Nov 07, 2008: Decompression refactor completed: The decompression
+       routines have been simplified; they now consume and produce
+       arbitrarily-sized blocks.  The reblocking which used to be in
+       read_support_compression_none() has been pulled into the read
+       core.  Of course, there are still some opportunities for
+       eliminating common code across the decompressors, but this is
+       a step in the right direction.  This also changes the
+       decompression bid to multi-pass so that archive_read now
+       builds out a filter pipeline.  This opens the door to
+       automatic uudecode and decryption support.  (I have some ideas
+       for encryption support that I'd like to explore soon.)
+Nov 01, 2008: lzma reader contributed by Miklos Vajna.  I still have
+       some concerns about the auto-detection (LZMA file format
+       doesn't support auto-detection well), so this is not yet
+       enabled under archive_read_support_compression_all().  For
+       now, you must call archive_read_support_compression_lzma() if
+       you want LZMA read support.
+Oct 15, 2008: bsdtar and bsdcpio have custom command-line parsers now,
+       so we now have consistent long-option support on all platforms.
+
 Jul 02, 2008: libarchive 2.5.5 released
 
 Jul 02, 2008: libarchive 2.5.5b released
index 74558ee077d31ba61586cb6a3183d37f85eff47e..1aa1c916f599f596f68ac5405c86856c71287105 100644 (file)
@@ -4,13 +4,13 @@ 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.5.5])
-m4_define([LIBARCHIVE_VERSION_N],[2005005])
+m4_define([LIBARCHIVE_VERSION_S],[2.5.901])
+m4_define([LIBARCHIVE_VERSION_N],[2005901])
 
 dnl bsdtar versioning tracks libarchive
 m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
 dnl bsdcpio is still versioning separately, as it's less mature.
-m4_define([BSDCPIO_VERSION_S],[1.0.0])
+m4_define([BSDCPIO_VERSION_S],[1.1.0])
 
 #
 # Now starts the "real" configure script.
index 31463b029ddfb84b16b8ad3b1d6b13100cb8b9d4..2923d29f249279de64a018560c36cb3c380a19e0 100644 (file)
@@ -3,7 +3,7 @@
 .include <bsd.own.mk>
 
 PROG=  bsdcpio
-BSDCPIO_VERSION_STRING=1.0.0
+BSDCPIO_VERSION_STRING=1.1.0
 SRCS=  cpio.c cmdline.c err.c matching.c pathmatch.c
 WARNS?=        6
 DPADD= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2}
index 912b52d2ab02a6742cbf6a9b444bbe701e6734cb..17cb51c6e9b96771e09a7e1dcfa4465930e4b328 100644 (file)
@@ -113,13 +113,13 @@ extern "C" {
  *             (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000)
  * #endif
  */
-#define        ARCHIVE_VERSION_NUMBER 2005005
+#define        ARCHIVE_VERSION_NUMBER 2005901
 __LA_DECL int          archive_version_number(void);
 
 /*
  * Textual name/version of the library, useful for version displays.
  */
-#define        ARCHIVE_VERSION_STRING "libarchive 2.5.5"
+#define        ARCHIVE_VERSION_STRING "libarchive 2.5.901"
 __LA_DECL const char * archive_version_string(void);
 
 #if ARCHIVE_VERSION_NUMBER < 3000000
index 0996faacdb5d5d4ff727587eb66d1ca12799712b..d9d16eb8b81921cdc0fff0d93b2c2943b72e9af9 100644 (file)
@@ -1,7 +1,7 @@
 # $FreeBSD: src/usr.bin/tar/Makefile,v 1.38 2008/08/22 01:31:13 kientzle Exp $
 
 PROG=  bsdtar
-BSDTAR_VERSION_STRING=2.5.5
+BSDTAR_VERSION_STRING=2.5.901
 SRCS=  bsdtar.c cmdline.c getdate.y matching.c read.c siginfo.c subst.c tree.c util.c write.c
 WARNS?=        5
 DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
diff --git a/version b/version
index b6ffbd7a3fc35b307290e415babb504583b63f1d..d0455b3983d983f29665a514936efe0e7c091515 100644 (file)
--- a/version
+++ b/version
@@ -1 +1 @@
-2005900
+2005901