You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2019/03/30 21:07:00 UTC

[jira] [Commented] (HBASE-22136) [hbase-thirdparty] Push out 2.2.0 release

    [ https://issues.apache.org/jira/browse/HBASE-22136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16805980#comment-16805980 ] 

stack commented on HBASE-22136:
-------------------------------

I put up an RC0 but hbase wouldn't build when I tried to use it.  See HBASE-22137.

Just put up an RC1.

Here is little script I was using. Doesn't do it all....

{code}
#!/bin/bash
set -x
set -e
v=2.2.0
rc=1

tag="${v}RC${rc}"
rm -rf $tag || true
n="hbase-thirdparty-${v}"
git clean -d -f -x
srctgz="${n}-src.tar.gz"
git archive --format=tar.gz --output="${srctgz}" --prefix="${n}/" ${tag}
mkdir ${tag}
mv ${srctgz} ${tag}
cd $tag
gpg --print-md  SHA512 "${srctgz}" > "${srctgz}.sha512"
gpg --armour --output "${srctgz}.asc" --detach-sig "${srctgz}"
cp ../RELEASENOTES.md .
cp ../CHANGES.md .
cd ..
{code}

> [hbase-thirdparty] Push out 2.2.0 release
> -----------------------------------------
>
>                 Key: HBASE-22136
>                 URL: https://issues.apache.org/jira/browse/HBASE-22136
>             Project: HBase
>          Issue Type: Sub-task
>          Components: rm
>    Affects Versions: 2.2.0
>            Reporter: stack
>            Assignee: stack
>            Priority: Major
>             Fix For: 2.2.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)