Update version to 3.1.10 and update release script to create a
source tarball.
Signed-off-by: Ben Myers <bpm@xxxxxxx>
---
VERSION | 2 +-
configure.ac | 2 +-
doc/CHANGES | 3 +++
release.sh | 6 ++++++
4 files changed, 11 insertions(+), 2 deletions(-)
Index: b/VERSION
===================================================================
--- a/VERSION 2012-12-13 14:27:23.241944135 -0600
+++ b/VERSION 2012-12-13 14:27:47.461944534 -0600
@@ -3,5 +3,5 @@
#
PKG_MAJOR=3
PKG_MINOR=1
-PKG_REVISION=9
+PKG_REVISION=10
PKG_BUILD=1
Index: b/configure.ac
===================================================================
--- a/configure.ac 2012-12-13 14:27:23.241944135 -0600
+++ b/configure.ac 2012-12-13 14:27:47.461944534 -0600
@@ -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: b/doc/CHANGES
===================================================================
--- a/doc/CHANGES 2012-12-13 14:27:23.481944150 -0600
+++ b/doc/CHANGES 2012-12-13 14:31:30.941944567 -0600
@@ -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: b/release.sh
===================================================================
--- a/release.sh 2012-12-13 14:27:24.041944267 -0600
+++ b/release.sh 2012-12-13 14:27:47.521945345 -0600
@@ -18,6 +18,12 @@ git commit -s -a -m "${version} release"
echo "Tagging git repository"
git tag -s -a -m "${version} release" v${version}
+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\""
echo "If you wish to create a source tarball, run \"make dist\""
|