]> wimlib.net Git - wimlib/commitdiff
Update version number to 1.3.1
authorEric Biggers <ebiggers3@gmail.com>
Fri, 22 Mar 2013 06:06:28 +0000 (01:06 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Fri, 22 Mar 2013 06:06:28 +0000 (01:06 -0500)
README
archlinux/PKGBUILD
configure.ac
debian/changelog
make-release
rpm/wimlib-minimal.spec
rpm/wimlib-without-ntfs-3g.spec
rpm/wimlib.spec
src/wimlib.h

diff --git a/README b/README
index e3c7632d7f478d37102117886edc43d681da5def..b9a6a53e999ff316ebf018e9d21485828db55369 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
                                   WIMLIB
 
-This is wimlib version 1.3.0 (March 2013).  wimlib can be used to read,
+This is wimlib version 1.3.1 (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.
index c6af81d2f4c10cac1a4d556b861e70ae21746d47..d7b63bb6dcf4b74701359714ec86de076bd7f36c 100644 (file)
@@ -1,7 +1,7 @@
 # Maintainer:  Eric Biggers <ebiggers3 at gmail dot com>
 
 pkgname=wimlib
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc="A library to extract, create, and modify WIM files"
 arch=("i686" "x86_64")
index 2b15855b60e84e19ce1d7491e4087e11ba865af8..71136390363d6764a439b2bf35a13a2a7115e0d0 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([wimlib], [1.3.0], [ebiggers3@gmail.com])
+AC_INIT([wimlib], [1.3.1], [ebiggers3@gmail.com])
 AC_CONFIG_SRCDIR([src/wim.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
index 23aa16367e0ff51c4700d0b6931a89963df9a0f8..b231ecf9dab12a46f194a81a17bd4e853c508564 100644 (file)
@@ -1,3 +1,9 @@
+wimlib (1.3.1-1) unstable; urgency=low
+
+  * Update to v1.3.1
+
+ -- Eric Biggers <ebiggers3gmail.com>  Fri, 22 Mar 2013 01:05:27 -0500
+
 wimlib (1.3.0-1) unstable; urgency=low
 
   * Update to v1.3.0
index 7ea68f3e2609b68433cf1d5d1ee015e3c6e2bfa4..81a3962b69483b98d628b2906c6f98493833fcd9 100755 (executable)
@@ -1,12 +1,12 @@
 #!/bin/bash
 
-oldver='1\.2\.6'
+oldver='1\.3\.0'
 oldmonth=March
 oldyear=2013
 
 newmajor=1
-newminor=2
-newpatch=7
+newminor=3
+newpatch=1
 newmonth=March
 newyear=2013
 
index af187a5b72f851ac6fa3aa73f64850d0f12ba0b4..77d779ace89dbb186f33eb98494f5139ec16299e 100644 (file)
@@ -1,6 +1,6 @@
 Summary:   Library to extract, create, and modify WIM files
 Name:      wimlib
-Version:   1.3.0
+Version:   1.3.1
 Release:   1
 License:   GPLv3+
 Group:     System/Libraries
index ecddd5598c6ee54e66dc388092d70227c95d7652..42f11cab27df6a55806b0971099af2a06b2d3275 100644 (file)
@@ -1,6 +1,6 @@
 Summary:   Library to extract, create, and modify WIM files
 Name:      wimlib
-Version:   1.3.0
+Version:   1.3.1
 Release:   1
 License:   GPLv3+
 Group:     System/Libraries
index c4cdb11107892b53be812615812897216790dbe2..b4ba27a15908f1c202cb494c4165fee3d5398931 100644 (file)
@@ -1,6 +1,6 @@
 Summary:   Library to extract, create, and modify WIM files
 Name:      wimlib
-Version:   1.3.0
+Version:   1.3.1
 Release:   1
 License:   GPLv3+
 Group:     System/Libraries
index 2947e1007b042d704801a08344a10e9ef34c990a..18417d19baf1041c3781ca0e14bf3117b4f1ea45 100644 (file)
@@ -31,7 +31,7 @@
  *
  * \section intro Introduction
  *
- * This is the documentation for the library interface of wimlib 1.3.0.  If you
+ * This is the documentation for the library interface of wimlib 1.3.1.  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 <a
 #define WIMLIB_MINOR_VERSION 3
 
 /** Patch version of the library (for example, the 5 in 1.2.5). */
-#define WIMLIB_PATCH_VERSION 0
+#define WIMLIB_PATCH_VERSION 1
 
 /**
  * Opaque structure that represents a WIM file.  This is an in-memory structure