Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions DISCLAIMER

This file was deleted.

2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Apache Parquet Format (Incubating)
Apache Parquet Format
Copyright 2014 The Apache Software Foundation

This product includes software developed at
Expand Down
4 changes: 2 additions & 2 deletions dev/prepare-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
8 changes: 4 additions & 4 deletions dev/source-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [ -z "$2" ]; then
exit
fi

version=$1-incubating
version=$1
rc=$2

if [ -d tmp/ ]; then
Expand Down Expand Up @@ -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"