On 12/13/2012 02:58 PM, Ben Myers wrote:
> Update version to 3.1.2 and change the release script to
> create a source tarball by default and sign it.
>
> Signed-off-by: Ben Myers <bpm@xxxxxxx>
Looks good.
Reviewed-by: Alex Elder <elder@xxxxxxxxxxx>
> ---
> VERSION | 2 +-
> configure.ac | 2 +-
> doc/CHANGES | 3 +++
> release.sh | 8 ++++++--
> 4 files changed, 11 insertions(+), 4 deletions(-)
>
> Index: b/VERSION
> ===================================================================
> --- a/VERSION 2012-12-13 14:53:49.841319714 -0600
> +++ b/VERSION 2012-12-13 14:53:53.651319189 -0600
> @@ -3,5 +3,5 @@
> #
> PKG_MAJOR=3
> PKG_MINOR=1
> -PKG_REVISION=1
> +PKG_REVISION=2
> PKG_BUILD=1
> Index: b/configure.ac
> ===================================================================
> --- a/configure.ac 2012-12-13 14:53:49.891319911 -0600
> +++ b/configure.ac 2012-12-13 14:53:53.651319189 -0600
> @@ -1,4 +1,4 @@
> -AC_INIT([xfsdump], [3.1.1])
> +AC_INIT([xfsdump], [3.1.2])
> AC_PREREQ(2.50)
> AC_CONFIG_AUX_DIR([.])
> AC_CONFIG_MACRO_DIR([m4])
> Index: b/doc/CHANGES
> ===================================================================
> --- a/doc/CHANGES 2012-12-13 14:53:49.891319911 -0600
> +++ b/doc/CHANGES 2012-12-13 14:53:53.671319998 -0600
> @@ -1,3 +1,6 @@
> +xfsdump-3.1.2 (13 December 2012)
> + - Update release script to create a source tarball.
> +
> xfsdump-3.1.1 (31 October 2012)
> - Save and restore 32 bit project ids correctly.
> - German translation, thanks to Chris Leick.
> Index: b/release.sh
> ===================================================================
> --- a/release.sh 2012-12-13 14:53:50.111320110 -0600
> +++ b/release.sh 2012-12-13 14:54:02.351319216 -0600
> @@ -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 xfsdump-${version}.tar.gz
> +
> +echo "Done. Please remember to push out tags using \"git push --tags\""
>
|