]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Update NEWS, version to 2.5.902a.
authorTim Kientzle <kientzle@gmail.com>
Sun, 9 Nov 2008 20:02:31 +0000 (15:02 -0500)
committerTim Kientzle <kientzle@gmail.com>
Sun, 9 Nov 2008 20:02:31 +0000 (15:02 -0500)
SVN-Revision: 245

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

diff --git a/NEWS b/NEWS
index 5ca37c4040d8630743804a8ac4f6f6e7bfdd1de6..d527aa5f79dba00a8ea77b7ca4beebceb05a2e49 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,24 +1,30 @@
-
-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
+Nov 09, 2008: libarchive 2.5.902a released
+Nov 08, 2008: libarchive 2.5.901a released
+Nov 08, 2008: Start of pre-release testing for libarchive 2.6
+
+Nov 07, 2008: Read filter refactor: The decompression routines just
+       consume and produce arbitrarily-sized blocks.  The reblocking
+       from read_support_compression_none() has been pulled into the
+       read core.  Also, the decompression bid now makes multiple
+       passes and stacks read filters.
+Oct 21, 2008: bsdcpio: New command-line parser.
+Oct 19, 2008: Internal read_ahead change: short reads are now an error
+Oct 06, 2008: bsdtar: option parser no longer uses getopt_long(),
+       gives consistent option parsing on all platforms.
+Sep 19, 2008: Jaakko Heinonen: shar utility built on libarchive
+Sep 17, 2008: Pedro Giffuni: birthtime support
+Sep 17, 2008: Miklos Vajna: lzma reader and test.  Note:  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.
+Sep 11, 2008: Ivailo Petrov: Many fixes to Windows build, new solution files
+Jul 26, 2008: archive_entry now tracks which values have not been set.
+       This helps zip extraction (file size is often "unknown") and
+       time restores (tar usually doesn't know atime).
+Jul 26, 2008: Joerg Sonnenberger: Performance improvements to shar writer
+Jul 25, 2008: Joerg Sonnenberger: mtree write support
 
 Jul 02, 2008: libarchive 2.5.5 released
 
index 1aa1c916f599f596f68ac5405c86856c71287105..2987966e2f6eff59553c56f32560097713d601a0 100644 (file)
@@ -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.5.901])
-m4_define([LIBARCHIVE_VERSION_N],[2005901])
+m4_define([LIBARCHIVE_VERSION_S],[2.5.902a])
+m4_define([LIBARCHIVE_VERSION_N],[2005902])
 
 dnl bsdtar versioning tracks libarchive
 m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
index 17cb51c6e9b96771e09a7e1dcfa4465930e4b328..ce296e34c5b2ff213d31eb8d6da7aef01f9b41ee 100644 (file)
@@ -113,13 +113,13 @@ extern "C" {
  *             (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000)
  * #endif
  */
-#define        ARCHIVE_VERSION_NUMBER 2005901
+#define        ARCHIVE_VERSION_NUMBER 2005902
 __LA_DECL int          archive_version_number(void);
 
 /*
  * Textual name/version of the library, useful for version displays.
  */
-#define        ARCHIVE_VERSION_STRING "libarchive 2.5.901"
+#define        ARCHIVE_VERSION_STRING "libarchive 2.5.902a"
 __LA_DECL const char * archive_version_string(void);
 
 #if ARCHIVE_VERSION_NUMBER < 3000000
index d9d16eb8b81921cdc0fff0d93b2c2943b72e9af9..b8c88a5d63e47c04178435a0410315055a753610 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.901
+BSDTAR_VERSION_STRING=2.5.902a
 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 d0455b3983d983f29665a514936efe0e7c091515..6bd668ee3057715f6893b8b28753f142aa1e8013 100644 (file)
--- a/version
+++ b/version
@@ -1 +1 @@
-2005901
+2005902a