From: Eric Biggers Date: Wed, 30 Jan 2013 02:22:25 +0000 (-0600) Subject: Update version to 1.2.4; update NEWS X-Git-Tag: v1.2.4~12 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=d00a238151ae7c8e091d938234a14572ef43b5f3 Update version to 1.2.4; update NEWS --- diff --git a/Makefile.am b/Makefile.am index 98a247ea..dd1a0d34 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 2:1:0 +libwim_la_LDFLAGS = -version-info 2:2:0 libwim_la_SOURCES = \ src/add_image.c \ diff --git a/NEWS b/NEWS index db29f510..528c3e7a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ Only the most important changes more recent than version 0.6 are noted here. +Version 1.2.4: + Added --arch switch to mkwinpeimg script to support getting AMD64 WinPE + from the WAIK. + + Update to work with ntfs-3g version 2013.1.13. + Version 1.2.3: Fixed truncating file to shorter but non-zero length on read-write mounted WIM image. diff --git a/README b/README index ef60b7fe..10b8e027 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ WIMLIB -This is wimlib version 1.2.3 (January 2013). wimlib can be used to read, +This is wimlib version 1.2.4 (January 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 4d838ea7..1b6afd77 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.2.3 +pkgver=1.2.4 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 bf1a6ff7..5dfcd0ea 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.2.3], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.2.4], [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 0fd968d5..30133b07 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wimlib (1.2.4-1) unstable; urgency=low + + * Update to v1.2.4 + + -- Eric Biggers Tue, 29 Jan 2013 20:19:29 -0600 + wimlib (1.2.3-1) unstable; urgency=low * Update to v1.2.3 diff --git a/make-release b/make-release index 527491a4..01065696 100755 --- a/make-release +++ b/make-release @@ -1,12 +1,12 @@ #!/bin/bash -oldver='1\.2\.2' -oldmonth=December -oldyear=2012 +oldver='1\.2\.3' +oldmonth=January +oldyear=2013 newmajor=1 newminor=2 -newpatch=3 +newpatch=4 newmonth=January newyear=2013 diff --git a/programs/mkwinpeimg b/programs/mkwinpeimg index 48143b6d..def484f7 100755 --- a/programs/mkwinpeimg +++ b/programs/mkwinpeimg @@ -20,7 +20,7 @@ script_name="$(basename $0)" PREFIX_REG="::" -WIMLIB_VERSION=1.2.3 +WIMLIB_VERSION=1.2.4 calc_columns () { STAT_COL=80 diff --git a/rpm/wimlib-minimal.spec b/rpm/wimlib-minimal.spec index 7c3caf14..8fff40ba 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.3 +Version: 1.2.4 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib-without-ntfs-3g.spec b/rpm/wimlib-without-ntfs-3g.spec index c0ec891f..48eaa5a7 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.3 +Version: 1.2.4 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib.spec b/rpm/wimlib.spec index 17894d50..bb25416e 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.3 +Version: 1.2.4 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/src/wimlib.h b/src/wimlib.h index d9a80c1c..87744064 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.3. If you + * This is the documentation for the library interface of wimlib 1.2.4. If you * have installed wimlib and want to know how to use the @c imagex program, * please see the man pages instead. * @@ -217,7 +217,7 @@ #define WIMLIB_MAJOR_VERSION 1 #define WIMLIB_MINOR_VERSION 2 -#define WIMLIB_PATCH_VERSION 3 +#define WIMLIB_PATCH_VERSION 4 /** * Opaque structure that represents a WIM file. This is an in-memory structure