From 5354bd34b5f9a6c895bacc921cb135ab1063f241 Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Thu, 10 Dec 2015 14:01:59 -0800 Subject: [PATCH] PARQUET-403: Remove remaining references to incubation. --- DISCLAIMER | 8 -------- NOTICE | 2 +- dev/prepare-release.sh | 4 ++-- dev/source-release.sh | 8 ++++---- 4 files changed, 7 insertions(+), 15 deletions(-) delete mode 100644 DISCLAIMER diff --git a/DISCLAIMER b/DISCLAIMER deleted file mode 100644 index 72eef1918..000000000 --- a/DISCLAIMER +++ /dev/null @@ -1,8 +0,0 @@ -Apache Parquet is an effort undergoing incubation at The Apache Software -Foundation (ASF), sponsored by The Apache Incubator. Incubation is required of -all newly accepted projects until a further review indicates that the -infrastructure, communications, and decision making process have stabilized in -a manner consistent with other successful ASF projects. While incubation status -is not necessarily a reflection of the completeness or stability of the code, -it does indicate that the project has yet to be fully endorsed by the ASF. - diff --git a/NOTICE b/NOTICE index 987d918f4..be5f50384 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ -Apache Parquet Format (Incubating) +Apache Parquet Format Copyright 2014 The Apache Software Foundation This product includes software developed at diff --git a/dev/prepare-release.sh b/dev/prepare-release.sh index 2d2efce3a..79586e895 100644 --- a/dev/prepare-release.sh +++ b/dev/prepare-release.sh @@ -23,11 +23,11 @@ if [ -z "$1" ]; then exit fi -version=$1-incubating +version=$1 tag=apache-parquet-format-$version mvn release:clean mvn release:prepare -Dtag=$tag -DreleaseVersion=$version -echo "Finish staging binary artifacts by running: sh dev/perform-release.sh" +echo "Finish staging binary artifacts by running: mvn release:perform" diff --git a/dev/source-release.sh b/dev/source-release.sh index 7119f2af6..a58c520d9 100644 --- a/dev/source-release.sh +++ b/dev/source-release.sh @@ -28,7 +28,7 @@ if [ -z "$2" ]; then exit fi -version=$1-incubating +version=$1 rc=$2 if [ -d tmp/ ]; then @@ -62,19 +62,19 @@ gpg --print-md MD5 $tarball > ${tarball}.md5 shasum $tarball > ${tarball}.sha # check out the parquet RC folder -svn co --depth=empty https://dist.apache.org/repos/dist/dev/incubator/parquet tmp +svn co --depth=empty https://dist.apache.org/repos/dist/dev/parquet tmp # add the release candidate for the tag mkdir -p tmp/$tagrc cp ${tarball}* tmp/$tagrc svn add tmp/$tagrc -svn ci -m "Apache Parquet Format (Incubating) $version RC${rc}" tmp/$tagrc +svn ci -m "Apache Parquet Format $version RC${rc}" tmp/$tagrc # clean up rm -rf tmp echo "Success! The release candidate is available here:" -echo " https://dist.apache.org/repos/dist/dev/incubator/parquet/$tagrc" +echo " https://dist.apache.org/repos/dist/dev/parquet/$tagrc" echo "" echo "Commit SHA1: $release_hash"