From: Eric Biggers Date: Mon, 13 Jan 2014 05:16:42 +0000 (-0600) Subject: Update version to v1.6.1-BETA X-Git-Tag: v1.6.1~61 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=09e9bf4f6dfc6a196aa2c85f85b7da81e6bd70f7 Update version to v1.6.1-BETA --- diff --git a/Makefile.am b/Makefile.am index 6e2ee776..fc7ac6ef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ endif lib_LTLIBRARIES = libwim.la -libwim_la_LDFLAGS = -version-info 12:0:3 $(WINDOWS_LDFLAGS) +libwim_la_LDFLAGS = -version-info 13:0:4 $(WINDOWS_LDFLAGS) libwim_la_SOURCES = \ src/add_image.c \ diff --git a/README b/README index 7b7eaf03..ed7ee1e0 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ INTRODUCTION -This is wimlib version 1.6.0 (January 2014). wimlib is a C library for +This is wimlib version 1.6.1 (January 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 31b10695..3b5bf23c 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Eric Biggers pkgname=wimlib -pkgver=1.6.0 +pkgver=1.6.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 c5443fa2..288a64b1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([wimlib], [1.6.0], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.6.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/debian/changelog b/debian/changelog index c91e2bf6..df630765 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wimlib (1.6.1-1) unstable; urgency=low + + * Update to v1.6.1 + + -- Eric Biggers Sun, 12 Jan 2014 23:13:44 -0600 + wimlib (1.6.0-1) unstable; urgency=low * Update to v1.6.0 diff --git a/include/wimlib.h b/include/wimlib.h index 4ef32ac2..a690f725 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -33,7 +33,7 @@ * * @section sec_intro Introduction * - * This is the documentation for the library interface of wimlib 1.6.0, a C + * This is the documentation for the library interface of wimlib 1.6.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 @@ -350,7 +350,7 @@ #define WIMLIB_MINOR_VERSION 6 /** 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 68b65598..e132ad67 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.6.0 +Version: 1.6.1 Release: 1 License: GPLv3+ URL: http://sourceforge.net/projects/wimlib diff --git a/update-version b/update-version index 4dc5db42..4bb950a6 100755 --- a/update-version +++ b/update-version @@ -1,12 +1,12 @@ #!/bin/bash -oldver='1\.5\.3' -oldmonth=December +oldver='1\.6\.0' +oldmonth=January oldyear=2013 newmajor=1 newminor=6 -newpatch=0 +newpatch=1 newmonth=January newyear=2014