]> wimlib.net Git - wimlib/commitdiff
v1.11.0 v1.11.0
authorEric Biggers <ebiggers3@gmail.com>
Wed, 18 Jan 2017 05:24:53 +0000 (21:24 -0800)
committerEric Biggers <ebiggers3@gmail.com>
Wed, 18 Jan 2017 05:29:15 +0000 (21:29 -0800)
25 files changed:
Makefile.am
NEWS
README
README.WINDOWS
archlinux/PKGBUILD
configure.ac
debian/changelog
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
rpm/wimtools.spec
tools/update-version

index 66acc43f775b7c30dde7fa0ef577a0a22e7a62dd..8d0b6cfecc72b4fb5d80bcd1cfeb9828f71100b9 100644 (file)
@@ -201,7 +201,7 @@ libwim_la_CFLAGS =          \
        $(LIBFUSE_CFLAGS)       \
        $(LIBCRYPTO_CFLAGS)
 
-libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 27:0:12
+libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 28:0:13
 
 libwim_la_LIBADD =             \
        $(PTHREAD_LIBS)         \
diff --git a/NEWS b/NEWS
index 46cd676c561dc3065330a159376fda58b90b3007..0e38dc322dde028f51a20e6b34f3627b5cfb5fec 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Version 1.11.0-BETA5:
+Version 1.11.0:
        Fixed a data corruption bug (incorrect compression) when storing an
        already highly-compressed file in an LZX-compressed WIM with a chunk
        size greater than or equal to 64K.  Note that this is not the default
diff --git a/README b/README
index 90121b653c1024a01df1612a305f97878f0d28c4..9832b38e79a5f24ea4403d9cb12674224a04307a 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
                                   INTRODUCTION
 
-This is wimlib version 1.11.0-BETA5 (January 2017).  wimlib is a C library for
+This is wimlib version 1.11.0 (January 2017).  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 00697e6f834a1839c2c6b9933f27bb9a95c7fc81..c54a773bedab3cbaed3fca4a2003fd86da885582 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.10.0.
+64-bit version of wimlib v1.11.0.
 
 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-pkg-config
     - mingw64-x86_64-winpthreads
 
-Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.10.0.tar.gz.
+Download wimlib's source code from https://wimlib.net/downloads/wimlib-1.11.0.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.10.0.tar.gz
-    cd wimlib-1.10.0
+    tar xf wimlib-1.11.0.tar.gz
+    cd wimlib-1.11.0
     ./configure --host=x86_64-w64-mingw32
     make
 
@@ -162,12 +162,12 @@ version you want, bootstrap the repository, and run the Windows release script:
 
     git clone git://wimlib.net/wimlib
     cd wimlib
-    git checkout v1.10.0
+    git checkout v1.11.0
     ./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.10.0-windows-x86_64-bin.zip", just like the official releases.  For
+"wimlib-1.11.0-windows-x86_64-bin.zip", just like the official releases.  For
 32-bit binaries just use "i686" instead of "x86_64".
index 2550805f7ae450d154d9184d178858d52a5379ea..b632deb21d12f0a8f92e2dc1bff0e8c0895f100f 100644 (file)
@@ -1,7 +1,7 @@
 # Maintainer:  Eric Biggers <ebiggers3 at gmail dot com>
 
 pkgname=wimlib
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="A library and program to extract, create, and modify WIM files"
 arch=("i686" "x86_64")
index a077fcdf1007d70bfcb3e05add2c6638a9cbca5c..693e345a51aebaf4fceef8631ac4ca3222453239 100644 (file)
@@ -1,6 +1,6 @@
 ###############################################################################
 
-AC_INIT([wimlib], [1.11.0-BETA5], [ebiggers3@gmail.com])
+AC_INIT([wimlib], [1.11.0], [ebiggers3@gmail.com])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
index 18d4c2b3260cc44568dc35f51c0267e1868a27c0..690169aa8b5f8ff9be34062d4c89220cbba313c4 100644 (file)
@@ -1,3 +1,9 @@
+wimlib (1.11.0-1) unstable; urgency=low
+
+  * Update to v1.11.0
+
+ -- Eric Biggers <ebiggers3@gmail.com>  Tue, 17 Jan 2017 19:41:32 -0800
+
 wimlib (1.10.0-1) unstable; urgency=low
 
   * Update to v1.10.0
index 92535cb983df08aaf0a3e38ee8e085a16023fe1e..ddcc3fdef6425958c0863cad5402e308614b5f39 100644 (file)
@@ -1,4 +1,4 @@
-.TH MKWINPEIMG "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH MKWINPEIMG "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 mkwinpeimg \- Make a customized bootable image of Windows PE
 .SH SYNOPSIS
index 5a7c4a856b3853ad6cfdd5a542216190aed7981c..fb649553857cf046d11c8fdcbb09b8709bb05f8e 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMAPPLY "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMAPPLY "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimapply \- Apply a WIM image
 .SH SYNOPSIS
index bbf89a1cab696a9aa579cab3cad8514a8c83f59f..ffcc798c387a1341ede5388f97db96f3d6159592 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMCAPTURE "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMCAPTURE "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimcapture, wimappend \- Capture or append a WIM image
 .SH SYNOPSIS
index ca3954e1f212c5656b91bae39a6c838432a6b512..bfc2194d4cf56a06505f67e2ddff84732e562fe4 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDELETE "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMDELETE "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimdelete \- Delete an image from a WIM archive
 .SH SYNOPSIS
index e6f6ca1a93f4457b40053b6eef029aa1f48b0d10..6c65ede1e901d200b27edafe735a7155970145d6 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMDIR "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMDIR "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimdir \- List the files contained in a WIM image
 .SH SYNOPSIS
index cb24ab1740dc1b771c6678df00e1de18dbef30de..8be65eee069e44a694643ae9b3309d449c288861 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXPORT "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMEXPORT "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimexport \- Export image(s) from a WIM archive
 .SH SYNOPSIS
index 688d191902ba9126b3eb29b94819894e40838cb4..f20f2f33c75cdb235046e0f6e182a2283e807087 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMEXTRACT "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMEXTRACT "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimextract \- Extract files from a WIM image
 .SH SYNOPSIS
index 7c44b47a30b42daec296b1f2ae7e5f3683a40648..775d6a7e36b3dbcfac7789816aa35c5cf78d67fa 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMINFO "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMINFO "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wiminfo \- Display or change information about a WIM file or image
 .SH SYNOPSIS
index bdfde023e60dfd5005517ae9cc19d068cdd185ce..1f291f4fd90cdc3e89bd4d45bb3316d2912989df 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMJOIN "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMJOIN "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimjoin\- Join a split WIM into a standalone WIM
 .SH SYNOPSIS
index b16c3648dbb5dd03ea97df9f262744a6ade65ec8..b2f395710ed66d64a273927ce3009823cca2a093 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMLIB-IMAGEX 1 "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMLIB-IMAGEX 1 "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimlib-imagex \- Extract, create, modify, or mount a WIM archive
 .SH SYNOPSIS
index 6a049b914c34fbcf0fa4e16263ec66a79dc28097..5c706bd1f80f888e88db224bb5de1ede7dea735f 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMMOUNT "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMMOUNT "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimmount, wimmountrw, wimunmount \- Mount or unmount a WIM image
 .SH SYNOPSIS
index 13444caad041203fa9d272a515227ee161af78a1..f2daf6d492f1afe53f4408f9fd5d57b1ce5caf3f 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMOPTIMIZE "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMOPTIMIZE "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimoptimize \- Optimize a WIM archive
 .SH SYNOPSIS
index b9e738c2d4ced2e65bd4f883e767cc633ab5ad98..34ccdda2e796c9ee61d5905d670a91b9c52cee9f 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMSPLIT "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMSPLIT "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimsplit \- Split a WIM archive into multiple parts
 .SH SYNOPSIS
index 9e6b577e5ee4381399df0b5c99b5af0d63a0fb36..4a2698a8f67b73e9262771cc2f58095a5b568ef4 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMUPDATE "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMUPDATE "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimupdate \- Update a WIM image
 .SH SYNOPSIS
index 4d51118bdbfc0a201517b0e29e49cd26e8172461..16ddb21079e10e795386f06651fc28e5b7d30d09 100644 (file)
@@ -1,4 +1,4 @@
-.TH WIMVERIFY "1" "August 2016" "wimlib 1.10.0" "User Commands"
+.TH WIMVERIFY "1" "January 2017" "wimlib 1.11.0" "User Commands"
 .SH NAME
 wimverify \- Verify a WIM archive
 .SH SYNOPSIS
index 2a957a70700eef0286873168f04c1763a8930322..135f5cb4bc91ec94026fd953aedcd062e73c662d 100644 (file)
@@ -11,7 +11,7 @@
 /**
  * @mainpage
  *
- * This is the documentation for the library interface of wimlib 1.10.0, a C
+ * This is the documentation for the library interface of wimlib 1.11.0, 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_MAJOR_VERSION 1
 
 /** Minor version of the library (for example, the 2 in 1.2.5). */
-#define WIMLIB_MINOR_VERSION 10
+#define WIMLIB_MINOR_VERSION 11
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
 #define WIMLIB_PATCH_VERSION 0
index 03cbb3ee34b9f30c85a5d1be3fe89692d1ce0838..962e7661fecae22f70864be8b733538c4b925fc2 100644 (file)
@@ -1,6 +1,6 @@
 Name:      wimtools
 Summary:   Tools to create, extract, modify, and mount WIM files
-Version:   1.10.0
+Version:   1.11.0
 Release:   1
 License:   GPLv3+
 URL:       https://wimlib.net
index 4868d89065277329a9ba4cfb6f0887a98d2f0454..401e93eaf0ad3159d5b96fd28d6db78f07f5ab0e 100755 (executable)
@@ -1,14 +1,14 @@
 #!/bin/bash
 
-oldver='1\.9\.2'
-oldmonth=June
+oldver='1\.10\.0'
+oldmonth=August
 oldyear=2016
 
 newmajor=1
-newminor=10
+newminor=11
 newpatch=0
-newmonth=August
-newyear=2016
+newmonth=January
+newyear=2017
 
 
 newver="${newmajor}.${newminor}.${newpatch}"