From: Eric Biggers Date: Sun, 24 Mar 2013 01:02:49 +0000 (-0500) Subject: Update version to 1.3.2 X-Git-Tag: v1.3.2~17 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=28fd72017ded230c4a0e4efdf24f2e2e55ba9f36 Update version to 1.3.2 --- diff --git a/Makefile.am b/Makefile.am index 3ac56d43..663691fb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,7 @@ AM_CFLAGS = -std=gnu99 lib_LTLIBRARIES = libwim.la -libwim_la_LDFLAGS = -version-info 4:0:2 $(WINDOWS_LDFLAGS) +libwim_la_LDFLAGS = -version-info 5:0:3 $(WINDOWS_LDFLAGS) libwim_la_SOURCES = \ src/add_image.c \ diff --git a/README b/README index b9a6a53e..b1c6540d 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ WIMLIB -This is wimlib version 1.3.1 (March 2013). wimlib can be used to read, +This is wimlib version 1.3.2 (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 d7b63bb6..02134ce9 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.3.1 +pkgver=1.3.2 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 fe07a3c7..80ea8df2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.3.1], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.3.2], [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 b231ecf9..54c86db8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wimlib (1.3.2-1) unstable; urgency=low + + * Update to v1.3.2 + + -- Eric Biggers Sat, 23 Mar 2013 20:00:14 -0500 + wimlib (1.3.1-1) unstable; urgency=low * Update to v1.3.1 diff --git a/make-release b/make-release index 81a3962b..ded3b14c 100755 --- a/make-release +++ b/make-release @@ -1,12 +1,12 @@ #!/bin/bash -oldver='1\.3\.0' +oldver='1\.3\.1' oldmonth=March oldyear=2013 newmajor=1 newminor=3 -newpatch=1 +newpatch=2 newmonth=March newyear=2013 @@ -37,6 +37,3 @@ wimlib ($newver-1) unstable; urgency=low\\ sed -i 's/\(Version:[[:space:]]*\)[^[:space:]]\+/\1'"$newver"'/' \ rpm/*.spec - -sed -i 's/WIMLIB_VERSION=[^[:space:]]\+/WIMLIB_VERSION='"$newver"'/' \ - programs/mkwinpeimg diff --git a/rpm/wimlib-minimal.spec b/rpm/wimlib-minimal.spec index 77d779ac..0c93d449 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.3.1 +Version: 1.3.2 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib-without-ntfs-3g.spec b/rpm/wimlib-without-ntfs-3g.spec index 42f11cab..872c5097 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.3.1 +Version: 1.3.2 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/rpm/wimlib.spec b/rpm/wimlib.spec index b4ba27a1..4cd8e77f 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.3.1 +Version: 1.3.2 Release: 1 License: GPLv3+ Group: System/Libraries diff --git a/src/wimlib.h b/src/wimlib.h index 4b46f21c..4308561c 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.3.1. If you + * This is the documentation for the library interface of wimlib 1.3.2. If you * have installed wimlib and want to know how to use the @b wimlib-imagex * program, please see the man pages instead. Also: the actual project page * where you can download the source code for the library is at