From: Ben Myers Date: Thu, 13 Dec 2012 20:33:42 +0000 (-0600) Subject: xfsprogs: update version to 3.1.10 X-Git-Tag: v3.1.10^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3229e20820cf71aa18b67b2ad19d8d53d7b562b2;p=thirdparty%2Fxfsprogs-dev.git xfsprogs: update version to 3.1.10 Update version to 3.1.10 and update release script to create a source tarball. Signed-off-by: Ben Myers Reviewed-by: Alex Elder --- diff --git a/VERSION b/VERSION index b587cab50..5fd834c42 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=3 PKG_MINOR=1 -PKG_REVISION=9 +PKG_REVISION=10 PKG_BUILD=1 diff --git a/configure.ac b/configure.ac index da84a970b..15e511af5 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/doc/CHANGES b/doc/CHANGES index 69362db75..1f32733a0 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -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 diff --git a/release.sh b/release.sh index 65e4e4bfe..debdb81c5 100755 --- a/release.sh +++ b/release.sh @@ -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\""