]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfsprogs: update version to 3.1.10 v3.1.10
authorBen Myers <bpm@sgi.com>
Thu, 13 Dec 2012 20:33:42 +0000 (14:33 -0600)
committerBen Myers <bpm@sgi.com>
Thu, 13 Dec 2012 21:33:58 +0000 (15:33 -0600)
Update version to 3.1.10 and update release script to create a
source tarball.

Signed-off-by: Ben Myers <bpm@sgi.com>
Reviewed-by: Alex Elder <elder@inktank.com>
VERSION
configure.ac
doc/CHANGES
release.sh

diff --git a/VERSION b/VERSION
index b587cab50d9e6d71858f88f7c2316b4db54a4e09..5fd834c425084a34b64a1a2880ed2ed7b2996b95 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=3
 PKG_MINOR=1
-PKG_REVISION=9
+PKG_REVISION=10
 PKG_BUILD=1
index da84a970b2dc689477e80f6f5a925f690c01baf5..15e511af5f6095266319f89fa08aec1738d007f5 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([xfsprogs], [3.1.9])
+AC_INIT([xfsprogs], [3.1.10])
 AC_PREREQ(2.50)
 AC_CONFIG_AUX_DIR([.])
 AC_CONFIG_MACRO_DIR([m4])
index 69362db759988fc68ee63535df43ba024aae1fe2..1f32733a0f4b2219d7e0ad1951d519a4b4d9ddef 100644 (file)
@@ -1,3 +1,6 @@
+xfsprogs-3.1.10 (13 December 2012)
+       - Update release script to make a source tarball.
+
 xfsprogs-3.1.9 (31 October 2012)
        - Print nice details if agsize is out of bounds in mkfs.xfs.
        - Various fixes for fragmented multi-block dir2 handling in
index 65e4e4bfeabfd3f9a96a37381c0dd288f047bb3a..debdb81c572199ec39e20e00b9ff505b76ebd007 100755 (executable)
@@ -18,6 +18,10 @@ git commit -s -a -m "${version} release"
 echo "Tagging git repository"
 git tag -s -a -m "${version} release" v${version}
 
-echo "Done.  Please remember to push out tags using \"git push --tags\""
-echo "If you wish to create a source tarball, run \"make dist\""
+echo "Making source tarball"
+make dist
+
+echo "Sign the source tarball"
+gpg --detach-sign xfsprogs-${version}.tar.gz
 
+echo "Done.  Please remember to push out tags using \"git push --tags\""