]> wimlib.net Git - wimlib/commitdiff
v1.13.6 v1.13.6
authorEric Biggers <ebiggers3@gmail.com>
Sun, 11 Sep 2022 17:34:12 +0000 (12:34 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Sun, 11 Sep 2022 17:34:12 +0000 (12:34 -0500)
21 files changed:
Makefile.am
NEWS
README
README.WINDOWS
doc/man1/mkwinpeimg.1
doc/man1/wimapply.1
doc/man1/wimcapture.1
doc/man1/wimdelete.1
doc/man1/wimdir.1
doc/man1/wimexport.1
doc/man1/wimextract.1
doc/man1/wiminfo.1
doc/man1/wimjoin.1
doc/man1/wimlib-imagex.1
doc/man1/wimmount.1
doc/man1/wimoptimize.1
doc/man1/wimsplit.1
doc/man1/wimupdate.1
doc/man1/wimverify.1
include/wimlib.h
tools/get-version-number

index 5fa5448d7c9e830a564c85a07c5e0d592dc8946c..d785bf2eee40a1978a6ee972ae5094b61d4bfdbc 100644 (file)
@@ -194,7 +194,7 @@ libwim_la_CFLAGS =          \
        $(LIBFUSE_CFLAGS)       \
        $(LIBCRYPTO_CFLAGS)
 
-libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 35:0:20
+libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 36:0:21
 
 libwim_la_LIBADD =             \
        $(PTHREAD_LIBS)         \
diff --git a/NEWS b/NEWS
index 4ea589f3c7094605e56db6bee060eac9c5413aba..c480742e0022b0843950b3866bbcc8d325a60767 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,20 @@
-version 1.13.5:
+Version 1.13.6:
+       wimsplit no longer prints a success message on failure.
+
+       wimlib_iterate_dir_tree() no longer hashes files that haven't yet been
+       written to the WIM file.
+
+       Reduced the maximum number of file descriptors that wimlib can use when
+       extracting files from a WIM image on macOS.
+
+       The files that used the CC0 public domain dedication now use the MIT
+       license instead.
+
+       Removed some configuration options (--disable-assertions,
+       --disable-error-messages, and --disable-multithreaded-compression)
+       that probably weren't being used by anyone.
+
+Version 1.13.5:
        Exporting "all" images from a WIM file no longer fails if multiple
        images in that WIM file have the same name.
 
diff --git a/README b/README
index 8ee586f6704f8e798155f24559e6bab04a7073b9..275e4a78f3a6cd4523aef46ed4930f40266e656d 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
                                   INTRODUCTION
 
-This is wimlib version 1.13.5 (December 2021).  wimlib is a C library for
+This is wimlib version 1.13.6 (September 2022).  wimlib is a C library for
 creating, modifying, extracting, and mounting files in the Windows Imaging
 Format (WIM files).  wimlib and its command-line frontend 'wimlib-imagex'
 provide a free and cross-platform alternative to Microsoft's WIMGAPI, ImageX,
index f6e6612184f9b0b20b45ee7e26b3c486965912f2..ea4eff2f0d502ccbe3d5316c053dc2e97c515f59 100644 (file)
@@ -94,7 +94,7 @@ from source, potentially with customizations.  Although wimlib's build system is
 designed for UNIX-like systems and is easiest to use on Linux, it's possible to
 build Windows binaries on Windows using Cygwin with MinGW.  To do this, follow
 the instructions below.  For the sake of example, I'll assume you are building a
-64-bit version of wimlib v1.13.5.
+64-bit version of wimlib v1.13.6.
 
 Run the Cygwin installer, available from https://www.cygwin.com/setup-x86.exe.
 When you get to the package selection screen, choose the following additional
@@ -107,13 +107,13 @@ packages from category "Devel":
     - mingw64-x86_64-winpthreads
     - pkg-config
 
-Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.13.5.tar.gz.
+Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.13.6.tar.gz.
 
 Start a Cygwin terminal and run the following commands:
 
     cd /cygdrive/c/Users/example/Downloads # (or wherever you downloaded the source to)
-    tar xf wimlib-1.13.5.tar.gz
-    cd wimlib-1.13.5
+    tar xf wimlib-1.13.6.tar.gz
+    cd wimlib-1.13.6
     ./configure --host=x86_64-w64-mingw32
     make
 
@@ -162,12 +162,12 @@ bootstrap the repository, and run the Windows release script:
 
     git clone git://wimlib.net/wimlib
     cd wimlib
-    git checkout v1.13.5  # example only; omit if building the master branch
+    git checkout v1.13.6  # example only; omit if building the master branch
     ./bootstrap
     ./tools/make-windows-release x86_64
 
 The release script will download and build libxml2 and winpthreads as static
 libraries, then build wimlib, then do some final tasks and bundle the resulting
 files up into a ZIP archive.  If successful you'll end up with a file like
-"wimlib-1.13.5-windows-x86_64-bin.zip", just like the official releases.  For
+"wimlib-1.13.6-windows-x86_64-bin.zip", just like the official releases.  For
 32-bit binaries just use "i686" instead of "x86_64".
index 896a3a5e8ed35f8e9d30c0980a34b7005b8d67bd..b5c1f86195582720e9d9f634a7344c111a0759d8 100644 (file)
@@ -1,4 +1,4 @@
-.TH MKWINPEIMG "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH MKWINPEIMG "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 mkwinpeimg \- Make a customized bootable image of Windows PE
 .SH SYNOPSIS
index e7543a634073686b0ffc68f8240f6749a2445db0..42dac959793c17e5b380556823c7440a59093d74 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMAPPLY "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMAPPLY "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimapply \- Apply a WIM image
 .SH SYNOPSIS
index 20acbc2a76a0709f656dfddacccd3c4073783d69..f30755372382de95f6238e9e1753787c9a6af1e9 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMCAPTURE "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMCAPTURE "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimcapture, wimappend \- Capture or append a WIM image
 .SH SYNOPSIS
index c670d7cc40749e9fd3c65f2490da095cd88b0589..a2f096b75eb4ff794e8b3beac4776df521eef6ea 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDELETE "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMDELETE "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimdelete \- Delete an image from a WIM archive
 .SH SYNOPSIS
index 31b4181bda987e3c6e4eb67220e83f31036794aa..0c239bc2af21743ac8c765d696ae444d1ab99265 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDIR "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMDIR "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimdir \- List the files contained in a WIM image
 .SH SYNOPSIS
index 2a176c0d6e00c4e438526053ba3ef0675de53e4a..87c89a3ac3f0e312cdfe2f144f5407b8e5c6e40c 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXPORT "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMEXPORT "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimexport \- Export image(s) from a WIM archive
 .SH SYNOPSIS
index 89dce64121c919e44b4fdf26ca40e94fc2766c14..0501d096388f859c67fddfdee3d9b4622f0c8f9e 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXTRACT "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMEXTRACT "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimextract \- Extract files from a WIM image
 .SH SYNOPSIS
index eb5451f44d729807dab4a5c0f83a064e9e22abc9..355d9bf1dee8042533970cfdbc73431dfa5bfa6c 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMINFO "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMINFO "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wiminfo \- Display or change information about a WIM file or image
 .SH SYNOPSIS
index 8a7a30fbeaac44b6c74503e5f1dd77a0b1df40d9..4cd6266433836923ebbd08a28b2ca096ec9052ce 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMJOIN "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMJOIN "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimjoin\- Join a split WIM into a standalone WIM
 .SH SYNOPSIS
index d16eec80cfa10d6538d4881dd4b2a98f976c0c29..307f04bb4ed61f3e736250d69c864d6eb3280798 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMLIB-IMAGEX 1 "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMLIB-IMAGEX 1 "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimlib-imagex \- Extract, create, modify, or mount a WIM archive
 .SH SYNOPSIS
index ef9234e46cffa348a9ca3dc64b017bad27cd3b5f..1292f921ac2deea3d91fb7743982ee02199df1e4 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMMOUNT "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMMOUNT "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimmount, wimmountrw, wimunmount \- Mount or unmount a WIM image
 .SH SYNOPSIS
index e52f433a60b8f5b9e06da1e8df4b5f113f72cc6b..d4758719a8500a6972f80b536e45ea4dde8e7d2b 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMOPTIMIZE "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMOPTIMIZE "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimoptimize \- Optimize a WIM archive
 .SH SYNOPSIS
index 6d140da7ae197e8a6403da28e03184a7b0848f63..87fe9d3416ef9941e0b8d25a5f97838f9abe9986 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMSPLIT "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMSPLIT "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimsplit \- Split a WIM archive into multiple parts
 .SH SYNOPSIS
index d32ca8f9c10554f2d754eb90c3d64eb43680ee04..26b9cdcf3a61b43dc1130d6a1fb325ea5c8c1311 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMUPDATE "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMUPDATE "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimupdate \- Update a WIM image
 .SH SYNOPSIS
index 83a4784ab77cd201867097468c51d9edb28f7212..6b499cc0c3a827dc98904c3ff36050acdf9e9aca 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMVERIFY "1" "December 2021" "wimlib 1.13.5" "User Commands"
+.TH WIMVERIFY "1" "September 2022" "wimlib 1.13.6" "User Commands"
 .SH NAME
 wimverify \- Verify a WIM archive
 .SH SYNOPSIS
index a46dcf5f7eef5ec8442da596680dd609938b753e..0347014810bbb86523ecda5d0e6aa334b50bbc3b 100644 (file)
@@ -11,7 +11,7 @@
 /**
  * @mainpage
  *
- * This is the documentation for the library interface of wimlib 1.13.5, a C
+ * This is the documentation for the library interface of wimlib 1.13.6, a C
  * library for creating, modifying, extracting, and mounting files in the
  * Windows Imaging (WIM) format.  This documentation is intended for developers
  * only.  If you have installed wimlib and want to know how to use the @b
 #define WIMLIB_MINOR_VERSION 13
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
-#define WIMLIB_PATCH_VERSION 5
+#define WIMLIB_PATCH_VERSION 6
 
 #ifdef __cplusplus
 extern "C" {
index c6b3cac95548f59cc30a7a0c306f6a508476dd5f..219d90780cf2aca863652b340360d84728f515b4 100755 (executable)
@@ -7,6 +7,6 @@ vers=$(git describe --abbrev=8 --dirty --always 2>/dev/null | \
        sed 's/^v//')
 if [ -z "$vers" ]; then
        # Fallback for people who use autoreconf on tarball releases
-       vers="1.13.5"
+       vers="1.13.6"
 fi
 echo "$vers"