]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
3.4.0 v3.4.0
authorMartin Matuska <martin@matuska.org>
Tue, 11 Jun 2019 19:53:23 +0000 (21:53 +0200)
committerMartin Matuska <martin@matuska.org>
Tue, 11 Jun 2019 19:53:23 +0000 (21:53 +0200)
CMakeLists.txt
NEWS
README.md
build/version
configure.ac
contrib/libarchive.spec
libarchive/archive.h
libarchive/archive_entry.h

index 061ad630ca5bb26b217abc32c7eeaae09a2ee169..4fd93d048027c0242ea3d4927f87683bb405f3a6 100644 (file)
@@ -18,7 +18,7 @@ endif()
 #   RelWithDebInfo : Release build with Debug Info
 #   MinSizeRel     : Release Min Size build
 IF(NOT CMAKE_BUILD_TYPE)
-  SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE)
+  SET(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
 ENDIF(NOT CMAKE_BUILD_TYPE)
 # Set a value type to properly display CMAKE_BUILD_TYPE on GUI if the
 # value type is "UNINITIALIZED".
diff --git a/NEWS b/NEWS
index e2d96aebd714ae338d912f617c3befd76f272520..222532d1e97872db27acae5d65eccaa30076bfb0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+Jun 11, 2019: libarchive 3.4.0 released
+
+May 18, 2019: Fixes for reading Android APK and JAR archives
+
 Apr 16, 2019: Support for non-recursive list and extract
 
 Apr 14, 2019: New tar option: --exclude-vcs
@@ -6,7 +10,7 @@ Mar 27, 2019: Support for file and directory symlinks on Windows
 
 Mar 12, 2019: Important fixes for storing file attributes and flags
 
-Jan 20, 2019: Support for xz, lzma, ppmd8 and bzip2 compression in zip archives
+Jan 20, 2019: Support for xz, lzma, ppmd8 and bzip2 decompression in ZIP files
 
 Oct 06, 2018: RAR 5.0 reader
 
index df19125f9030ac4bdcafb8d60bfb83ed9d540b12..2912b3d0a61e7fd36189d095329a67c093e2aa7b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -81,6 +81,7 @@ Currently, the library automatically detects and reads the following fomats:
   * Binary cpio (big-endian or little-endian)
   * ISO9660 CD-ROM images (with optional Rockridge or Joliet extensions)
   * ZIP archives (with uncompressed or "deflate" compressed entries, including support for encrypted Zip archives)
+  * ZIPX archives (with support for bzip2, ppmd8, lzma and xz compressed entries)
   * GNU and BSD 'ar' archives
   * 'mtree' format
   * 7-Zip archives
index 85595ba589052977e5f2224e1950e53035cbf1f0..784078cf9c92b541d3250b4a5b73729b08bb5ce9 100644 (file)
@@ -1 +1 @@
-3003004dev
+3004000
index d5339d37540a025836967dcd4afcd4f4112d91b0..c517b17c1975b7afa8da6efe8baa18adff47c23d 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],[3.3.4dev])
-m4_define([LIBARCHIVE_VERSION_N],[3003004])
+m4_define([LIBARCHIVE_VERSION_S],[3.4.0])
+m4_define([LIBARCHIVE_VERSION_N],[3004000])
 
 dnl bsdtar and bsdcpio versioning tracks libarchive
 m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
index 45d26b4652656733cbe01ab402cf10b307b2d2c8..211b391e9173cf9e1a18bf7f49b12ddad533e2fe 100644 (file)
@@ -1,5 +1,5 @@
 Name:           {{{ git_name }}}
-Version:        {{{ git_version lead=3 follow=3 }}}
+Version:        {{{ git_version lead=3 follow=4 }}}
 Release:        1%{?dist}
 Summary:        A library for handling streaming archive formats
 
index daaaf783a0017a8b3230463663a044c0cc707ecd..9ad9260b41ad387124363544451d5b7024a508ad 100644 (file)
@@ -36,7 +36,7 @@
  * assert that ARCHIVE_VERSION_NUMBER >= 2012108.
  */
 /* Note: Compiler will complain if this does not match archive_entry.h! */
-#define        ARCHIVE_VERSION_NUMBER 3003004
+#define        ARCHIVE_VERSION_NUMBER 3004000
 
 #include <sys/stat.h>
 #include <stddef.h>  /* for wchar_t */
@@ -155,7 +155,7 @@ __LA_DECL int               archive_version_number(void);
 /*
  * Textual name/version of the library, useful for version displays.
  */
-#define        ARCHIVE_VERSION_ONLY_STRING "3.3.4dev"
+#define        ARCHIVE_VERSION_ONLY_STRING "3.4.0"
 #define        ARCHIVE_VERSION_STRING "libarchive " ARCHIVE_VERSION_ONLY_STRING
 __LA_DECL const char * archive_version_string(void);
 
index f8a7e532f2b9da924e98c7d901b9f030d261e477..71cc63653b928be5f77fb351b352a12a9526bb7c 100644 (file)
@@ -30,7 +30,7 @@
 #define        ARCHIVE_ENTRY_H_INCLUDED
 
 /* Note: Compiler will complain if this does not match archive.h! */
-#define        ARCHIVE_VERSION_NUMBER 3003004
+#define        ARCHIVE_VERSION_NUMBER 3004000
 
 /*
  * Note: archive_entry.h is for use outside of libarchive; the