From cfa7869f8c1c7f69d9042ca2d3bc53edb31c16dd Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Fri, 19 Aug 2016 20:13:27 -0700 Subject: [PATCH] v1.10.0 --- Makefile.am | 2 +- NEWS | 2 +- README | 2 +- archlinux/PKGBUILD | 2 +- configure.ac | 2 +- debian/changelog | 6 ++++++ doc/man1/mkwinpeimg.1 | 2 +- doc/man1/wimlib-imagex-apply.1 | 2 +- doc/man1/wimlib-imagex-capture.1 | 2 +- doc/man1/wimlib-imagex-delete.1 | 2 +- doc/man1/wimlib-imagex-dir.1 | 2 +- doc/man1/wimlib-imagex-export.1 | 2 +- doc/man1/wimlib-imagex-extract.1 | 2 +- doc/man1/wimlib-imagex-info.1 | 2 +- doc/man1/wimlib-imagex-join.1 | 2 +- doc/man1/wimlib-imagex-mount.1 | 2 +- doc/man1/wimlib-imagex-optimize.1 | 2 +- doc/man1/wimlib-imagex-split.1 | 2 +- doc/man1/wimlib-imagex-update.1 | 2 +- doc/man1/wimlib-imagex-verify.1 | 2 +- doc/man1/wimlib-imagex.1 | 2 +- include/wimlib.h | 6 +++--- rpm/wimtools.spec | 2 +- tools/update-version | 10 +++++----- 24 files changed, 35 insertions(+), 29 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6754144b..f630cf79 100644 --- a/Makefile.am +++ b/Makefile.am @@ -199,7 +199,7 @@ libwim_la_CFLAGS = \ $(LIBFUSE_CFLAGS) \ $(LIBCRYPTO_CFLAGS) -libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 26:0:11 +libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 27:0:12 libwim_la_LIBADD = \ $(PTHREAD_LIBS) \ diff --git a/NEWS b/NEWS index 88522aac..9720f2a0 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Version 1.10.0-BETA: +Version 1.10.0: The LZX compression ratio has been slightly improved. The default mode, LZX level 50, is now almost as good as the old LZX level 100, while being nearly the same speed as before. diff --git a/README b/README index cc036571..22481ce0 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ INTRODUCTION -This is wimlib version 1.10.0-BETA (July 2016). wimlib is a C library for +This is wimlib version 1.10.0 (August 2016). 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, diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 11d86087..2550805f 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.9.2 +pkgver=1.10.0 pkgrel=1 pkgdesc="A library and program to extract, create, and modify WIM files" arch=("i686" "x86_64") diff --git a/configure.ac b/configure.ac index 74ff4744..970b0a45 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ ############################################################################### -AC_INIT([wimlib], [1.10.0-BETA], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.10.0], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/debian/changelog b/debian/changelog index 11a3cb14..18d4c2b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wimlib (1.10.0-1) unstable; urgency=low + + * Update to v1.10.0 + + -- Eric Biggers Fri, 19 Aug 2016 20:12:30 -0700 + wimlib (1.9.2-1) unstable; urgency=low * Update to v1.9.2 diff --git a/doc/man1/mkwinpeimg.1 b/doc/man1/mkwinpeimg.1 index cca04bd5..2d8dfa63 100644 --- a/doc/man1/mkwinpeimg.1 +++ b/doc/man1/mkwinpeimg.1 @@ -1,4 +1,4 @@ -.TH MKWINPEIMG "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH MKWINPEIMG "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME mkwinpeimg \- Make a customized bootable image of Windows PE .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-apply.1 b/doc/man1/wimlib-imagex-apply.1 index 7d7642b7..b0ab1354 100644 --- a/doc/man1/wimlib-imagex-apply.1 +++ b/doc/man1/wimlib-imagex-apply.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-apply \- Extract one image, or all images, from a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-capture.1 b/doc/man1/wimlib-imagex-capture.1 index 3b0db0ad..e78f6159 100644 --- a/doc/man1/wimlib-imagex-capture.1 +++ b/doc/man1/wimlib-imagex-capture.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-capture, wimlib-imagex-append \- Create or append a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-delete.1 b/doc/man1/wimlib-imagex-delete.1 index 33cd9450..729b28c7 100644 --- a/doc/man1/wimlib-imagex-delete.1 +++ b/doc/man1/wimlib-imagex-delete.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-delete \- Delete an image from a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-dir.1 b/doc/man1/wimlib-imagex-dir.1 index 0efcd557..0036e6e6 100644 --- a/doc/man1/wimlib-imagex-dir.1 +++ b/doc/man1/wimlib-imagex-dir.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-dir \- Show the files contained in a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-export.1 b/doc/man1/wimlib-imagex-export.1 index f5dbc35d..9eaf5be0 100644 --- a/doc/man1/wimlib-imagex-export.1 +++ b/doc/man1/wimlib-imagex-export.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-export \- Exports an image from a WIM archive to an existing or new WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-extract.1 b/doc/man1/wimlib-imagex-extract.1 index 5ba8a7ae..6a9f3fcb 100644 --- a/doc/man1/wimlib-imagex-extract.1 +++ b/doc/man1/wimlib-imagex-extract.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-extract \- Extract files or directories from a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-info.1 b/doc/man1/wimlib-imagex-info.1 index 8d0a7d85..17cc6f36 100644 --- a/doc/man1/wimlib-imagex-info.1 +++ b/doc/man1/wimlib-imagex-info.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-info \- Display information about a WIM file, or change information about an image diff --git a/doc/man1/wimlib-imagex-join.1 b/doc/man1/wimlib-imagex-join.1 index e02e6c66..9b683ef0 100644 --- a/doc/man1/wimlib-imagex-join.1 +++ b/doc/man1/wimlib-imagex-join.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-join \- Join split WIMs into a standalone one-part WIM .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-mount.1 b/doc/man1/wimlib-imagex-mount.1 index 306d8d90..b5b6c630 100644 --- a/doc/man1/wimlib-imagex-mount.1 +++ b/doc/man1/wimlib-imagex-mount.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-mount, wimlib-imagex-mountrw, wimlib-imagex-unmount \- Mount and unmount an image from a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-optimize.1 b/doc/man1/wimlib-imagex-optimize.1 index 84cd3b51..1f74553e 100644 --- a/doc/man1/wimlib-imagex-optimize.1 +++ b/doc/man1/wimlib-imagex-optimize.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-optimize \- Optimize a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-split.1 b/doc/man1/wimlib-imagex-split.1 index 4fb582bf..aacf7b39 100644 --- a/doc/man1/wimlib-imagex-split.1 +++ b/doc/man1/wimlib-imagex-split.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-split \- Split a WIM into multiple parts .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-update.1 b/doc/man1/wimlib-imagex-update.1 index 2edb0d0c..107da368 100644 --- a/doc/man1/wimlib-imagex-update.1 +++ b/doc/man1/wimlib-imagex-update.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-update \- Update a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex-verify.1 b/doc/man1/wimlib-imagex-verify.1 index 9fcae7e1..6290a5e6 100644 --- a/doc/man1/wimlib-imagex-verify.1 +++ b/doc/man1/wimlib-imagex-verify.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX "1" "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX "1" "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex-verify \- Verify a WIM file .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex.1 b/doc/man1/wimlib-imagex.1 index 9ec74282..9508da2d 100644 --- a/doc/man1/wimlib-imagex.1 +++ b/doc/man1/wimlib-imagex.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX 1 "June 2016" "wimlib 1.9.2" "User Commands" +.TH WIMLIB-IMAGEX 1 "August 2016" "wimlib 1.10.0" "User Commands" .SH NAME wimlib-imagex \- Extract, create, modify, or mount a WIM (Windows Imaging Format) archive .SH SYNOPSIS diff --git a/include/wimlib.h b/include/wimlib.h index 277932d6..09bf1052 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -11,7 +11,7 @@ /** * @mainpage * - * This is the documentation for the library interface of wimlib 1.9.2, a C + * This is the documentation for the library interface of wimlib 1.10.0, a C * library for creating, modifying, extracting, and mounting files in the * Windows Imaging Format. This documentation is intended for developers only. * If you have installed wimlib and want to know how to use the @b wimlib-imagex @@ -399,10 +399,10 @@ #define WIMLIB_MAJOR_VERSION 1 /** Minor version of the library (for example, the 2 in 1.2.5). */ -#define WIMLIB_MINOR_VERSION 9 +#define WIMLIB_MINOR_VERSION 10 /** Patch version of the library (for example, the 5 in 1.2.5). */ -#define WIMLIB_PATCH_VERSION 2 +#define WIMLIB_PATCH_VERSION 0 #ifdef __cplusplus extern "C" { diff --git a/rpm/wimtools.spec b/rpm/wimtools.spec index fe437c20..03cbb3ee 100644 --- a/rpm/wimtools.spec +++ b/rpm/wimtools.spec @@ -1,6 +1,6 @@ Name: wimtools Summary: Tools to create, extract, modify, and mount WIM files -Version: 1.9.2 +Version: 1.10.0 Release: 1 License: GPLv3+ URL: https://wimlib.net diff --git a/tools/update-version b/tools/update-version index 45acebc6..4868d890 100755 --- a/tools/update-version +++ b/tools/update-version @@ -1,13 +1,13 @@ #!/bin/bash -oldver='1\.9\.1' -oldmonth=March +oldver='1\.9\.2' +oldmonth=June oldyear=2016 newmajor=1 -newminor=9 -newpatch=2 -newmonth=June +newminor=10 +newpatch=0 +newmonth=August newyear=2016 -- 2.43.0