[incubator-livy] branch master updated: [BUILD] Add "apache" prefix to release archives.

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git


The following commit(s) were added to refs/heads/master by this push:
 new 07d216d  [BUILD] Add "apache" prefix to release archives.
07d216d is described below

commit 07d216d33a5420004262c9b8d2acc2751547cc96
Author: Marcelo Vanzin 
AuthorDate: Tue Mar 19 13:08:15 2019 -0700

[BUILD] Add "apache" prefix to release archives.

Author: Marcelo Vanzin 

Closes #160 from vanzin/archive-name.
---
 assembly/pom.xml |  2 +-
 dev/release-build.sh | 50 +-
 2 files changed, 22 insertions(+), 30 deletions(-)

diff --git a/assembly/pom.xml b/assembly/pom.xml
index f1a524c..c0d0b26 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -29,7 +29,7 @@
   pom
 
   
-livy-${project.version}-bin
+apache-livy-${project.version}-bin
 zip
 true
   
diff --git a/dev/release-build.sh b/dev/release-build.sh
index 9a72164..5c3bbc2 100755
--- a/dev/release-build.sh
+++ b/dev/release-build.sh
@@ -84,6 +84,7 @@ fi
 # Destination directory on remote server
 
RELEASE_STAGING_LOCATION="https://dist.apache.org/repos/dist/dev/incubator/livy";
 
+LIVY_REPO=${LIVY_REPO:-https://gitbox.apache.org/repos/asf/incubator-livy.git}
 GPG="gpg --no-tty --batch"
 NEXUS_ROOT=https://repository.apache.org/service/local/staging
 NEXUS_PROFILE=91529f2f65d84e # Profile for Livy staging uploads
@@ -96,7 +97,7 @@ rm -rf release-staging
 mkdir release-staging
 cd release-staging
 
-git clone https://gitbox.apache.org/repos/asf/incubator-livy.git
+git clone $LIVY_REPO incubator-livy
 cd incubator-livy
 git checkout $GIT_REF
 git_hash=`git rev-parse --short HEAD`
@@ -112,52 +113,43 @@ rm .gitignore
 rm -rf .git
 cd ..
 
+ARCHIVE_NAME_PREFIX="apache-livy-$LIVY_VERSION"
+SRC_ARCHIVE="$ARCHIVE_NAME_PREFIX-src.zip"
+BIN_ARCHIVE="$ARCHIVE_NAME_PREFIX-bin.zip"
+
 if [[ "$1" == "package" ]]; then
   # Source and binary tarballs
   echo "Packaging release tarballs"
-  cp -r incubator-livy livy-$LIVY_VERSION-src
-  zip -r livy-$LIVY_VERSION-src.zip livy-$LIVY_VERSION-src
-  echo "" | $GPG --passphrase-fd 0 --armour --output 
livy-$LIVY_VERSION-src.zip.asc \
---detach-sig livy-$LIVY_VERSION-src.zip
-  echo "" | $GPG --passphrase-fd 0 --print-md MD5 livy-$LIVY_VERSION-src.zip > 
\
-livy-$LIVY_VERSION-src.zip.md5
-  echo "" | $GPG --passphrase-fd 0 --print-md \
-SHA512 livy-$LIVY_VERSION-src.zip > livy-$LIVY_VERSION-src.zip.sha512
-  rm -rf livy-$LIVY_VERSION-src
+  cp -r incubator-livy $ARCHIVE_NAME_PREFIX
+  zip -r $SRC_ARCHIVE $ARCHIVE_NAME_PREFIX
+  echo "" | $GPG --passphrase-fd 0 --armour --output $SRC_ARCHIVE.asc 
--detach-sig $SRC_ARCHIVE
+  echo "" | $GPG --passphrase-fd 0 --print-md SHA512 $SRC_ARCHIVE > 
$SRC_ARCHIVE.sha512
+  rm -rf $ARCHIVE_NAME_PREFIX
 
   # Updated for binary build
   make_binary_release() {
-cp -r incubator-livy livy-$LIVY_VERSION-bin
-
-cd livy-$LIVY_VERSION-bin
+cp -r incubator-livy $ARCHIVE_NAME_PREFIX-bin
+cd $ARCHIVE_NAME_PREFIX-bin
 
-$MVN clean install -DskipTests -DskipITs
 $MVN clean package -DskipTests -Dgenerate-third-party
 
 echo "Copying and signing regular binary distribution"
-cp assembly/target/livy-$LIVY_VERSION-bin.zip .
-echo "" | $GPG --passphrase-fd 0 --armour \
-  --output livy-$LIVY_VERSION-bin.zip.asc \
-  --detach-sig livy-$LIVY_VERSION-bin.zip
-echo "" | $GPG --passphrase-fd 0 --print-md \
-  MD5 livy-$LIVY_VERSION-bin.zip > \
-  livy-$LIVY_VERSION-bin.zip.md5
-echo "" | $GPG --passphrase-fd 0 --print-md \
-  SHA512 livy-$LIVY_VERSION-bin.zip > \
-  livy-$LIVY_VERSION-bin.zip.sha512
-
-cp livy-$LIVY_VERSION-bin.zip* ../
+cp assembly/target/$BIN_ARCHIVE .
+echo "" | $GPG --passphrase-fd 0 --armour --output $BIN_ARCHIVE.asc 
--detach-sig $BIN_ARCHIVE
+echo "" | $GPG --passphrase-fd 0 --print-md SHA512 $BIN_ARCHIVE > 
$BIN_ARCHIVE.sha512
+
+cp $BIN_ARCHIVE* ../
 cd ..
   }
 
   make_binary_release
 
-  svn co $RELEASE_STAGING_LOCATION svn-livy
+  svn co --depth=empty $RELEASE_STAGING_LOCATION svn-livy
   mkdir -p svn-livy/$LIVY_VERSION-$RELEASE_RC
 
   echo "Copying release tarballs to local svn directory"
-  cp ./livy-$LIVY_VERSION-src.zip* svn-livy/$LIVY_VERSION-$RELEASE_RC/
-  cp ./livy-$LIVY_VERSION-bin.zip* svn-livy/$LIVY_VERSION-$RELEASE_RC/
+  cp ./$SRC_ARCHIVE* svn-livy/$LIVY_VERSION-$RELEASE_RC/
+  cp ./$BIN_ARCHIVE* svn-livy/$LIVY_VERSION-$RELEASE_RC/
 
   cd svn-livy
   svn add $LIVY_VERSION-$RELEASE_RC



[incubator-livy] branch branch-0.6 updated: [BUILD] Add "apache" prefix to release archives.

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git


The following commit(s) were added to refs/heads/branch-0.6 by this push:
 new 9436f17  [BUILD] Add "apache" prefix to release archives.
9436f17 is described below

commit 9436f1754319792163cf01e259b37cf2346a7e13
Author: Marcelo Vanzin 
AuthorDate: Tue Mar 19 13:08:15 2019 -0700

[BUILD] Add "apache" prefix to release archives.

Author: Marcelo Vanzin 

Closes #160 from vanzin/archive-name.

(cherry picked from commit 07d216d33a5420004262c9b8d2acc2751547cc96)
Signed-off-by: Marcelo Vanzin 
---
 assembly/pom.xml |  2 +-
 dev/release-build.sh | 50 +-
 2 files changed, 22 insertions(+), 30 deletions(-)

diff --git a/assembly/pom.xml b/assembly/pom.xml
index cfc5052..7260f20 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -29,7 +29,7 @@
   pom
 
   
-livy-${project.version}-bin
+apache-livy-${project.version}-bin
 zip
 true
   
diff --git a/dev/release-build.sh b/dev/release-build.sh
index 9a72164..5c3bbc2 100755
--- a/dev/release-build.sh
+++ b/dev/release-build.sh
@@ -84,6 +84,7 @@ fi
 # Destination directory on remote server
 
RELEASE_STAGING_LOCATION="https://dist.apache.org/repos/dist/dev/incubator/livy";
 
+LIVY_REPO=${LIVY_REPO:-https://gitbox.apache.org/repos/asf/incubator-livy.git}
 GPG="gpg --no-tty --batch"
 NEXUS_ROOT=https://repository.apache.org/service/local/staging
 NEXUS_PROFILE=91529f2f65d84e # Profile for Livy staging uploads
@@ -96,7 +97,7 @@ rm -rf release-staging
 mkdir release-staging
 cd release-staging
 
-git clone https://gitbox.apache.org/repos/asf/incubator-livy.git
+git clone $LIVY_REPO incubator-livy
 cd incubator-livy
 git checkout $GIT_REF
 git_hash=`git rev-parse --short HEAD`
@@ -112,52 +113,43 @@ rm .gitignore
 rm -rf .git
 cd ..
 
+ARCHIVE_NAME_PREFIX="apache-livy-$LIVY_VERSION"
+SRC_ARCHIVE="$ARCHIVE_NAME_PREFIX-src.zip"
+BIN_ARCHIVE="$ARCHIVE_NAME_PREFIX-bin.zip"
+
 if [[ "$1" == "package" ]]; then
   # Source and binary tarballs
   echo "Packaging release tarballs"
-  cp -r incubator-livy livy-$LIVY_VERSION-src
-  zip -r livy-$LIVY_VERSION-src.zip livy-$LIVY_VERSION-src
-  echo "" | $GPG --passphrase-fd 0 --armour --output 
livy-$LIVY_VERSION-src.zip.asc \
---detach-sig livy-$LIVY_VERSION-src.zip
-  echo "" | $GPG --passphrase-fd 0 --print-md MD5 livy-$LIVY_VERSION-src.zip > 
\
-livy-$LIVY_VERSION-src.zip.md5
-  echo "" | $GPG --passphrase-fd 0 --print-md \
-SHA512 livy-$LIVY_VERSION-src.zip > livy-$LIVY_VERSION-src.zip.sha512
-  rm -rf livy-$LIVY_VERSION-src
+  cp -r incubator-livy $ARCHIVE_NAME_PREFIX
+  zip -r $SRC_ARCHIVE $ARCHIVE_NAME_PREFIX
+  echo "" | $GPG --passphrase-fd 0 --armour --output $SRC_ARCHIVE.asc 
--detach-sig $SRC_ARCHIVE
+  echo "" | $GPG --passphrase-fd 0 --print-md SHA512 $SRC_ARCHIVE > 
$SRC_ARCHIVE.sha512
+  rm -rf $ARCHIVE_NAME_PREFIX
 
   # Updated for binary build
   make_binary_release() {
-cp -r incubator-livy livy-$LIVY_VERSION-bin
-
-cd livy-$LIVY_VERSION-bin
+cp -r incubator-livy $ARCHIVE_NAME_PREFIX-bin
+cd $ARCHIVE_NAME_PREFIX-bin
 
-$MVN clean install -DskipTests -DskipITs
 $MVN clean package -DskipTests -Dgenerate-third-party
 
 echo "Copying and signing regular binary distribution"
-cp assembly/target/livy-$LIVY_VERSION-bin.zip .
-echo "" | $GPG --passphrase-fd 0 --armour \
-  --output livy-$LIVY_VERSION-bin.zip.asc \
-  --detach-sig livy-$LIVY_VERSION-bin.zip
-echo "" | $GPG --passphrase-fd 0 --print-md \
-  MD5 livy-$LIVY_VERSION-bin.zip > \
-  livy-$LIVY_VERSION-bin.zip.md5
-echo "" | $GPG --passphrase-fd 0 --print-md \
-  SHA512 livy-$LIVY_VERSION-bin.zip > \
-  livy-$LIVY_VERSION-bin.zip.sha512
-
-cp livy-$LIVY_VERSION-bin.zip* ../
+cp assembly/target/$BIN_ARCHIVE .
+echo "" | $GPG --passphrase-fd 0 --armour --output $BIN_ARCHIVE.asc 
--detach-sig $BIN_ARCHIVE
+echo "" | $GPG --passphrase-fd 0 --print-md SHA512 $BIN_ARCHIVE > 
$BIN_ARCHIVE.sha512
+
+cp $BIN_ARCHIVE* ../
 cd ..
   }
 
   make_binary_release
 
-  svn co $RELEASE_STAGING_LOCATION svn-livy
+  svn co --depth=empty $RELEASE_STAGING_LOCATION svn-livy
   mkdir -p svn-livy/$LIVY_VERSION-$RELEASE_RC
 
   echo "Copying release tarballs to local svn directory"
-  cp ./livy-$LIVY_VERSION-src.zip* svn-livy/$LIVY_VERSION-$RELEASE_RC/
-  cp ./livy-$LIVY_VERSION-bin.zip* svn-livy/$LIVY_VERSION-$RELEASE_RC/
+  cp ./$SRC_ARCHIVE* svn-livy/$LIVY_VERSION-$RELEASE_RC/
+  cp ./$BIN_ARCHIVE* svn-livy/$LIVY_VERSION-$RELEASE_RC/
 
   cd svn-livy
   svn add $LIVY_VERSION-$RELEASE_RC



[incubator-livy] 01/02: [BUILD] Update version for 0.6.0-incubating rc2.

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git

commit 28be98cabc53b0858e8174a8e1fcfe216e53f8c2
Author: Marcelo Vanzin 
AuthorDate: Tue Mar 19 14:36:23 2019 -0700

[BUILD] Update version for 0.6.0-incubating rc2.
---
 api/pom.xml  | 4 ++--
 assembly/pom.xml | 4 ++--
 client-common/pom.xml| 4 ++--
 client-http/pom.xml  | 4 ++--
 core/pom.xml | 4 ++--
 core/scala-2.11/pom.xml  | 4 ++--
 coverage/pom.xml | 4 ++--
 docs/_data/project.yml   | 2 +-
 docs/programmatic-api.md | 2 +-
 examples/pom.xml | 4 ++--
 integration-test/pom.xml | 4 ++--
 pom.xml  | 2 +-
 python-api/pom.xml   | 4 ++--
 python-api/setup.py  | 2 +-
 repl/pom.xml | 4 ++--
 repl/scala-2.11/pom.xml  | 4 ++--
 rsc/pom.xml  | 2 +-
 scala-api/pom.xml| 4 ++--
 scala-api/scala-2.11/pom.xml | 4 ++--
 scala/pom.xml| 4 ++--
 server/pom.xml   | 4 ++--
 test-lib/pom.xml | 4 ++--
 thriftserver/client/pom.xml  | 2 +-
 thriftserver/server/pom.xml  | 2 +-
 thriftserver/session/pom.xml | 2 +-
 25 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index d04e027..f7f653e 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
   
 
   org.apache.livy
   livy-api
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   jar
 
   
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 7260f20..57e7506 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
 ../pom.xml
   
 
   livy-assembly
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   pom
 
   
diff --git a/client-common/pom.xml b/client-common/pom.xml
index e3358d3..9081437 100644
--- a/client-common/pom.xml
+++ b/client-common/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
   
 
   org.apache.livy
   livy-client-common
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   jar
 
   
diff --git a/client-http/pom.xml b/client-http/pom.xml
index 51d0922..0fca693 100644
--- a/client-http/pom.xml
+++ b/client-http/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
   
 
   org.apache.livy
   livy-client-http
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   jar
 
   
diff --git a/core/pom.xml b/core/pom.xml
index eeadcef..cda028e 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,12 +22,12 @@
   
 org.apache.livy
 multi-scala-project-root
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
 ../scala/pom.xml
   
 
   livy-core-parent
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   pom
 
   
diff --git a/core/scala-2.11/pom.xml b/core/scala-2.11/pom.xml
index be13fed..644dcd3 100644
--- a/core/scala-2.11/pom.xml
+++ b/core/scala-2.11/pom.xml
@@ -19,13 +19,13 @@
   4.0.0
   org.apache.livy
   livy-core_2.11
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   jar
 
   
 org.apache.livy
 livy-core-parent
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
 ../pom.xml
   
 
diff --git a/coverage/pom.xml b/coverage/pom.xml
index 75c0e50..a4a7a93 100644
--- a/coverage/pom.xml
+++ b/coverage/pom.xml
@@ -23,11 +23,11 @@
 org.apache.livy
 livy-main
 ../pom.xml
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
   
 
   livy-coverage-report
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   pom
 
   
diff --git a/docs/_data/project.yml b/docs/_data/project.yml
index 536d44c..7e28b46 100644
--- a/docs/_data/project.yml
+++ b/docs/_data/project.yml
@@ -16,6 +16,6 @@
 # Apache Project configurations
 #
 name: Apache Livy
-version: 0.6.1-incubating-SNAPSHOT
+version: 0.6.0-incubating
 
 podling: true
\ No newline at end of file
diff --git a/docs/programmatic-api.md b/docs/programmatic-api.md
index 15b20b1..a7d9ee2 100644
--- a/docs/programmatic-api.md
+++ b/docs/programmatic-api.md
@@ -35,7 +35,7 @@ Add the Livy client dependency to your application's POM:
 
   org.apache.livy
   livy-client-http
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
 
 ```
 
diff --git a/examples/pom.xml b/examples/pom.xml
index fc9c14b..72203ef 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -23,13 +23,13 @@
   
 org.apache.livy
 livy-main
-0.6.1-incubating-SNAPSHOT
+0.6.0-incubating
 ../pom.xml
   
 
   org.apache.livy
   livy-examples
-  0.6.1-incubating-SNAPSHOT
+  0.6.0-incubating
   jar
 
   
diff --git a/integration-test/pom.xml b/integration-test/pom.xml
index 3021624..fae5d73 100644
--- a/integration-test/pom.xml
+++ b/integratio

[incubator-livy] branch branch-0.6 updated (9436f17 -> 022ef28)

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a change to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git.


from 9436f17  [BUILD] Add "apache" prefix to release archives.
 new 28be98c  [BUILD] Update version for 0.6.0-incubating rc2.
 new 022ef28  [BUILD] Update version for development version 
0.6.1-incubating-SNAPSHOT.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:



[incubator-livy] 02/02: [BUILD] Update version for development version 0.6.1-incubating-SNAPSHOT.

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git

commit 022ef284b0f5d9d82f26f3f3a3733bfa95702fe2
Author: Marcelo Vanzin 
AuthorDate: Tue Mar 19 14:36:28 2019 -0700

[BUILD] Update version for development version 0.6.1-incubating-SNAPSHOT.
---
 api/pom.xml  | 4 ++--
 assembly/pom.xml | 4 ++--
 client-common/pom.xml| 4 ++--
 client-http/pom.xml  | 4 ++--
 core/pom.xml | 4 ++--
 core/scala-2.11/pom.xml  | 4 ++--
 coverage/pom.xml | 4 ++--
 docs/_data/project.yml   | 2 +-
 docs/programmatic-api.md | 2 +-
 examples/pom.xml | 4 ++--
 integration-test/pom.xml | 4 ++--
 pom.xml  | 2 +-
 python-api/pom.xml   | 4 ++--
 python-api/setup.py  | 2 +-
 repl/pom.xml | 4 ++--
 repl/scala-2.11/pom.xml  | 4 ++--
 rsc/pom.xml  | 2 +-
 scala-api/pom.xml| 4 ++--
 scala-api/scala-2.11/pom.xml | 4 ++--
 scala/pom.xml| 4 ++--
 server/pom.xml   | 4 ++--
 test-lib/pom.xml | 4 ++--
 thriftserver/client/pom.xml  | 2 +-
 thriftserver/server/pom.xml  | 2 +-
 thriftserver/session/pom.xml | 2 +-
 25 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index f7f653e..d04e027 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
   
 
   org.apache.livy
   livy-api
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   jar
 
   
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 57e7506..7260f20 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
 ../pom.xml
   
 
   livy-assembly
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   pom
 
   
diff --git a/client-common/pom.xml b/client-common/pom.xml
index 9081437..e3358d3 100644
--- a/client-common/pom.xml
+++ b/client-common/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
   
 
   org.apache.livy
   livy-client-common
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   jar
 
   
diff --git a/client-http/pom.xml b/client-http/pom.xml
index 0fca693..51d0922 100644
--- a/client-http/pom.xml
+++ b/client-http/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.livy
 livy-main
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
   
 
   org.apache.livy
   livy-client-http
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   jar
 
   
diff --git a/core/pom.xml b/core/pom.xml
index cda028e..eeadcef 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -22,12 +22,12 @@
   
 org.apache.livy
 multi-scala-project-root
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
 ../scala/pom.xml
   
 
   livy-core-parent
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   pom
 
   
diff --git a/core/scala-2.11/pom.xml b/core/scala-2.11/pom.xml
index 644dcd3..be13fed 100644
--- a/core/scala-2.11/pom.xml
+++ b/core/scala-2.11/pom.xml
@@ -19,13 +19,13 @@
   4.0.0
   org.apache.livy
   livy-core_2.11
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   jar
 
   
 org.apache.livy
 livy-core-parent
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
 ../pom.xml
   
 
diff --git a/coverage/pom.xml b/coverage/pom.xml
index a4a7a93..75c0e50 100644
--- a/coverage/pom.xml
+++ b/coverage/pom.xml
@@ -23,11 +23,11 @@
 org.apache.livy
 livy-main
 ../pom.xml
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
   
 
   livy-coverage-report
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   pom
 
   
diff --git a/docs/_data/project.yml b/docs/_data/project.yml
index 7e28b46..536d44c 100644
--- a/docs/_data/project.yml
+++ b/docs/_data/project.yml
@@ -16,6 +16,6 @@
 # Apache Project configurations
 #
 name: Apache Livy
-version: 0.6.0-incubating
+version: 0.6.1-incubating-SNAPSHOT
 
 podling: true
\ No newline at end of file
diff --git a/docs/programmatic-api.md b/docs/programmatic-api.md
index a7d9ee2..15b20b1 100644
--- a/docs/programmatic-api.md
+++ b/docs/programmatic-api.md
@@ -35,7 +35,7 @@ Add the Livy client dependency to your application's POM:
 
   org.apache.livy
   livy-client-http
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
 
 ```
 
diff --git a/examples/pom.xml b/examples/pom.xml
index 72203ef..fc9c14b 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -23,13 +23,13 @@
   
 org.apache.livy
 livy-main
-0.6.0-incubating
+0.6.1-incubating-SNAPSHOT
 ../pom.xml
   
 
   org.apache.livy
   livy-examples
-  0.6.0-incubating
+  0.6.1-incubating-SNAPSHOT
   jar
 
   
diff --git a/integration-test/pom.xml b/integration-test/pom.xml
index fae5d73..3021624 100644
--- a/integration-test

[incubator-livy] tag v0.6.0-incubating-rc2 created (now 28be98c)

2019-03-19 Thread vanzin
This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a change to tag v0.6.0-incubating-rc2
in repository https://gitbox.apache.org/repos/asf/incubator-livy.git.


  at 28be98c  (commit)
No new revisions were added by this update.



svn commit: r33080 - /dev/incubator/livy/0.6.0-incubating-rc2/

2019-03-19 Thread vanzin
Author: vanzin
Date: Tue Mar 19 21:44:20 2019
New Revision: 33080

Log:
Apache Livy 0.6.0-incubating-rc2

Added:
dev/incubator/livy/0.6.0-incubating-rc2/

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip   
(with props)

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.asc

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.sha512

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip   
(with props)

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.asc

dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.sha512

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.asc
==
--- 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.asc
 (added)
+++ 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.asc
 Tue Mar 19 21:44:20 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEBaIRDEOYcactJL/n/Y/9TDoNVWQFAlyRYp8ACgkQ/Y/9TDoN
+VWSg7RAAmpFGymhTOJGn8QN/tFHd6h1tET0+ogBenjL8pfKM3yScYenhB+rgn+4Z
+Z7L2OIdwGSFZmZxfgtzZevTBYqv/nfp/OIvqmJ62RwNezAMNiFI5esq3LWxn0wug
+iizcO2X3vhWHqaL5TVLwkuDBuBDhAtdCEE0inz65hG5yNFB9B/1FLd+6SnV+/8AK
+pfrtzinG/URy3wi+1XTXDMjPLGheTeUoFvFoXw9nqWn7VvB9+672e94pIWxO8Jiy
+zTBiwwoWr78Fdzo6opy7cyJNZaRrSUTl8MwdruJTGVFtn92PHLDC9Ypo/k/ahR6T
+dpRPsPu+w76/YOQTZmFXwhziWSync4wRCQ3y8ymWd/JYamLXaFxXm8n0nQq9215w
+3Z7izvXnfoMolzMI2pVt4RX7aMhAyx3EBDOeGwuieBAY515aDFlS4QpI3V+rrPfH
+XTBqOsMfXhzo0LPeQqLGHzhc1l5HSLK9XqO8b5HJUpnsd0LVV0ziAA8W8olOAK4w
+gTQBZCTuCYsVwpmLazBjm7Wf418QjiZ7se6klmX5rbjqbZ0vsRn2l039TPUunNcF
+GBHH0U4/y9TJVCFdYHzKilNIGwf6vNaLn+Bhu4JLoZC+rF8tSDtvdaT5RZ+rn/+k
+TMkOE3uAB5fx1ndngvoumZvkPTLk8DFGNnLJ4yFcCZjfLW2MHI4=
+=rK+q
+-END PGP SIGNATURE-

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.sha512
==
--- 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.sha512
 (added)
+++ 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-bin.zip.sha512
 Tue Mar 19 21:44:20 2019
@@ -0,0 +1,4 @@
+apache-livy-0.6.0-incubating-bin.zip: 207CF020 1DC80239 4CC12719 FA04D2BD
+  7C313BE0 1E19D923 42761643 3E28239B
+  11FDFC0E D9964729 772A50E2 4E3A08A7
+  0377D7D2 8C25B682 825B3145 E0BEE89F

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.asc
==
--- 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.asc
 (added)
+++ 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.asc
 Tue Mar 19 21:44:20 2019
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEBaIRDEOYcactJL/n/Y/9TDoNVWQFAlyRYaUACgkQ/Y/9TDoN
+VWQMshAAooCpmpVGtrcYTTUIoNeevdcAJULm37o0v3QegPK7GYV7Vb47qJKXh7C/
++VIXxdhUERXwMPu/ZK5CQhja1Ei0afOHsiuF7hdoDh1AiQK5RKyi8yQCHsFSeWa3
+dt1qmFkitXEuu37+AyiW6Xkg45veW5++hFG54y9ko+2xpEQ6+qV7Buqpj8865LqI
+8/FI8lr5uIeeX5GBMOy44POpAx8YO+BqUc6yR8SO418lTGsqzLLz5CBJO/AMPQ8Y
+OxvOuAzIcZ21bd8WXIz5rBELnp9+DHZeTZFxJ8F5vOyxNqt64t7dN3CpriNk5NSK
+Emsm7NMC4XPIsFtnx4xjCKhFNvcqm8rZlx0jjgqNZFEXLhrDWFoSk5svJVMzgBCq
+UfLjY9nP2RFK4pWE9KgkNRu/QtT7ozrbxy1QXYQfTmnLhYWhrDcgBtm1Zsd0HW+s
+57qMLjXr5QdcGdHHO93V+Fab7+J3tjNl3QWov2pEwy4ayfOh0rtCczpGpg8ADyaT
+uEmf8nD1mf72AiMFfwHvPaKrtP99rcyulf7bd6TC9n977dJ1iI5srpXKKcLmTgck
+XybjwBM6V03I0dLm2G1JMmu8p7ZZ4oQYifT2RD8aFCXJ9YsGkctl0vwvjfsX6JRf
+Uppp95K+tp+PJ+91qwGEDXWnkJZdPC1KfGZ3b4TmiingUV7YdPU=
+=h2/2
+-END PGP SIGNATURE-

Added: 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.sha512
==
--- 
dev/incubator/livy/0.6.0-incubating-rc2/apache-livy-0.6.0-incubating-src.zip.sha512
 (added)
+++ 
dev/incub