You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by bl...@apache.org on 2015/12/14 18:23:50 UTC

parquet-format git commit: PARQUET-403: Remove remaining references to incubation.

Repository: parquet-format
Updated Branches:
  refs/heads/master 145f4df56 -> 9d5bd03ef


PARQUET-403: Remove remaining references to incubation.

Author: Ryan Blue <bl...@apache.org>

Closes #34 from rdblue/PARQUET-403-fix-release-scripts and squashes the following commits:

5354bd3 [Ryan Blue] PARQUET-403: Remove remaining references to incubation.


Project: http://git-wip-us.apache.org/repos/asf/parquet-format/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-format/commit/9d5bd03e
Tree: http://git-wip-us.apache.org/repos/asf/parquet-format/tree/9d5bd03e
Diff: http://git-wip-us.apache.org/repos/asf/parquet-format/diff/9d5bd03e

Branch: refs/heads/master
Commit: 9d5bd03eff9cc6b41ca5437b7a60efeb5a828ca0
Parents: 145f4df
Author: Ryan Blue <bl...@apache.org>
Authored: Mon Dec 14 09:23:39 2015 -0800
Committer: Ryan Blue <bl...@apache.org>
Committed: Mon Dec 14 09:23:39 2015 -0800

----------------------------------------------------------------------
 DISCLAIMER             | 8 --------
 NOTICE                 | 2 +-
 dev/prepare-release.sh | 4 ++--
 dev/source-release.sh  | 8 ++++----
 4 files changed, 7 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-format/blob/9d5bd03e/DISCLAIMER
----------------------------------------------------------------------
diff --git a/DISCLAIMER b/DISCLAIMER
deleted file mode 100644
index 72eef19..0000000
--- 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.
-

http://git-wip-us.apache.org/repos/asf/parquet-format/blob/9d5bd03e/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index 987d918..be5f503 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

http://git-wip-us.apache.org/repos/asf/parquet-format/blob/9d5bd03e/dev/prepare-release.sh
----------------------------------------------------------------------
diff --git a/dev/prepare-release.sh b/dev/prepare-release.sh
index 2d2efce..79586e8 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"

http://git-wip-us.apache.org/repos/asf/parquet-format/blob/9d5bd03e/dev/source-release.sh
----------------------------------------------------------------------
diff --git a/dev/source-release.sh b/dev/source-release.sh
index 7119f2a..a58c520 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"