From 5e2f335c1097250e8fe96617bcc0248fb8c64e01 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 19 Jun 2014 19:35:27 -0500 Subject: [PATCH] Update version to v1.7.1-BETA --- Makefile.am | 2 +- README | 2 +- archlinux/PKGBUILD | 2 +- configure.ac | 2 +- include/wimlib.h | 4 ++-- rpm/wimtools.spec | 2 +- update-version | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.am b/Makefile.am index f9754a10..2e1298b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ endif lib_LTLIBRARIES = libwim.la -libwim_la_LDFLAGS = -version-info 15:0:0 $(WINDOWS_LDFLAGS) +libwim_la_LDFLAGS = -version-info 16:0:1 $(WINDOWS_LDFLAGS) libwim_la_SOURCES = \ src/add_image.c \ diff --git a/README b/README index 25430a70..108b8a6c 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ INTRODUCTION -This is wimlib version 1.7.0 (June 2014). wimlib is a C library for +This is wimlib version 1.7.1-BETA (June 2014). wimlib is a C library for creating, modifying, extracting, and mounting files in the Windows Imaging Format (WIM files). These files are normally created using the ImageX (imagex.exe) or Dism (Dism.exe) utilities on Windows, but wimlib is distributed diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 027ca1c6..1522eedd 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.7.0 +pkgver=1.7.1 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 d31269f0..c9737fbf 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.7.0], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.7.1-BETA], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/include/wimlib.h b/include/wimlib.h index 23c53ad6..ecb76353 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -31,7 +31,7 @@ /** * @mainpage * - * This is the documentation for the library interface of wimlib 1.7.0, a C + * This is the documentation for the library interface of wimlib 1.7.1, 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 @@ -383,7 +383,7 @@ #define WIMLIB_MINOR_VERSION 7 /** Patch version of the library (for example, the 5 in 1.2.5). */ -#define WIMLIB_PATCH_VERSION 0 +#define WIMLIB_PATCH_VERSION 1 #ifdef __cplusplus extern "C" { diff --git a/rpm/wimtools.spec b/rpm/wimtools.spec index 64bae856..a540d59b 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.7.0 +Version: 1.7.1 Release: 1 License: GPLv3+ URL: http://sourceforge.net/projects/wimlib diff --git a/update-version b/update-version index 8acbe0cd..0ce1b04c 100755 --- a/update-version +++ b/update-version @@ -1,12 +1,12 @@ #!/bin/bash oldver='1\.7\.0' -oldmonth=May +oldmonth=June oldyear=2014 newmajor=1 newminor=7 -newpatch=0 +newpatch=1 newmonth=June newyear=2014 -- 2.43.0