From: Eric Biggers Date: Wed, 6 Mar 2013 15:40:31 +0000 (-0600) Subject: Update to v1.2.7 X-Git-Tag: v1.3.0~47 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=33d977b0e1cc13323340fc6a29825570dbf833da Update to v1.2.7 --- diff --git a/Makefile.am b/Makefile.am index d9bff716..1e545bb1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ AM_CFLAGS = -std=gnu99 -D_LARGEFILE_SOURCE \ lib_LTLIBRARIES = libwim.la -libwim_la_LDFLAGS = -version-info 3:0:1 +libwim_la_LDFLAGS = -version-info 4:0:2 libwim_la_SOURCES = \ src/add_image.c \ diff --git a/NEWS b/NEWS index 75a500a3..25d1a31a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ Only the most important changes more recent than version 0.6 are noted here. +Version 1.2.7: + --source-list option added to `imagex capture' and `imagex append'. + Version 1.2.6: Storing UNIX file owners, groups, and modes in WIM images is now possible using `imagex capture' with the --unix-data flag. diff --git a/README b/README index 5725849c..0cc804ca 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ WIMLIB -This is wimlib version 1.2.6 (March 2013). wimlib can be used to read, +This is wimlib version 1.2.7 (March 2013). wimlib can be used to read, write, and mount files in the Windows Imaging Format (WIM files). These files are normally created by using the `imagex.exe' utility on Windows, but this library provides a free implementation of imagex for UNIX-based systems. diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 4778d8e2..281ddfcb 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.6 +pkgver=1.2.7 pkgrel=1 pkgdesc="A library to extract, create, and modify WIM files" arch=("i686" "x86_64") diff --git a/configure.ac b/configure.ac index 800d6b88..3b02ef84 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.2.6], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.2.7], [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 eb6b95cc..ac25cda3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wimlib (1.2.7-1) unstable; urgency=low + + * Update to v1.2.7 + + -- Eric Biggers Wed, 06 Mar 2013 09:38:58 -0600 + wimlib (1.2.6-1) unstable; urgency=low * Update to v1.2.6 diff --git a/make-release b/make-release index c93e6a1c..7ea68f3e 100755 --- a/make-release +++ b/make-release @@ -1,12 +1,12 @@ #!/bin/bash -oldver='1\.2\.5' -oldmonth=February +oldver='1\.2\.6' +oldmonth=March oldyear=2013 newmajor=1 newminor=2 -newpatch=6 +newpatch=7 newmonth=March newyear=2013 diff --git a/programs/mkwinpeimg b/programs/mkwinpeimg index 7d890d81..d44e2b0f 100755 --- a/programs/mkwinpeimg +++ b/programs/mkwinpeimg @@ -20,7 +20,7 @@ script_name="$(basename $0)" PREFIX_REG="::" -WIMLIB_VERSION=1.2.6 +WIMLIB_VERSION=1.2.7 calc_columns () { STAT_COL=80 diff --git a/rpm/wimlib-minimal.spec b/rpm/wimlib-minimal.spec index bf62fd44..8a952e2a 100644 --- a/rpm/wimlib-minimal.spec +++ b/rpm/wimlib-minimal.spec @@ -1,6 +1,6 @@ Summary: Library to extract, create, and modify WIM files Name: wimlib -Version: 1.2.6 +Version: 1.2.7 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib-without-ntfs-3g.spec b/rpm/wimlib-without-ntfs-3g.spec index 0a413dbe..7493f45e 100644 --- a/rpm/wimlib-without-ntfs-3g.spec +++ b/rpm/wimlib-without-ntfs-3g.spec @@ -1,6 +1,6 @@ Summary: Library to extract, create, and modify WIM files Name: wimlib -Version: 1.2.6 +Version: 1.2.7 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib.spec b/rpm/wimlib.spec index ce91b294..3c4a8082 100644 --- a/rpm/wimlib.spec +++ b/rpm/wimlib.spec @@ -1,6 +1,6 @@ Summary: Library to extract, create, and modify WIM files Name: wimlib -Version: 1.2.6 +Version: 1.2.7 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/src/wimlib.h b/src/wimlib.h index 4af3d761..36178298 100644 --- a/src/wimlib.h +++ b/src/wimlib.h @@ -31,7 +31,7 @@ * * \section intro Introduction * - * This is the documentation for the library interface of wimlib 1.2.6. If you + * This is the documentation for the library interface of wimlib 1.2.7. If you * have installed wimlib and want to know how to use the @c imagex program, * please see the man pages instead. * @@ -228,7 +228,7 @@ #define WIMLIB_MINOR_VERSION 2 /** Patch version of the library (for example, the 5 in 1.2.5). */ -#define WIMLIB_PATCH_VERSION 6 +#define WIMLIB_PATCH_VERSION 7 /** * Opaque structure that represents a WIM file. This is an in-memory structure