Repository: spark Updated Branches: refs/heads/branch-1.5 71ea61f90 -> c182dc4a4
[SPARK-9199] [CORE] Update Tachyon dependency from 0.7.0 -> 0.7.1. Updates the tachyon-client version to the latest release. The main difference between 0.7.0 and 0.7.1 on the client side is to support running Tachyon on local file system by default. No new non-Tachyon dependencies are added, and no code changes are required since the client API has not changed. Author: Calvin Jia <[email protected]> Closes #8135 from calvinjia/spark-9199-2. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c182dc4a Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c182dc4a Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c182dc4a Branch: refs/heads/branch-1.5 Commit: c182dc4a421f04fdfe61b9906d08c25cfd072e3f Parents: 71ea61f Author: Calvin Jia <[email protected]> Authored: Wed Aug 12 20:07:37 2015 -0700 Committer: Reynold Xin <[email protected]> Committed: Wed Aug 12 20:07:37 2015 -0700 ---------------------------------------------------------------------- core/pom.xml | 2 +- make-distribution.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c182dc4a/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index 0e53a79..4f79d71 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -266,7 +266,7 @@ <dependency> <groupId>org.tachyonproject</groupId> <artifactId>tachyon-client</artifactId> - <version>0.7.0</version> + <version>0.7.1</version> <exclusions> <exclusion> <groupId>org.apache.hadoop</groupId> http://git-wip-us.apache.org/repos/asf/spark/blob/c182dc4a/make-distribution.sh ---------------------------------------------------------------------- diff --git a/make-distribution.sh b/make-distribution.sh index 4789b0e..8589255 100755 --- a/make-distribution.sh +++ b/make-distribution.sh @@ -33,7 +33,7 @@ SPARK_HOME="$(cd "`dirname "$0"`"; pwd)" DISTDIR="$SPARK_HOME/dist" SPARK_TACHYON=false -TACHYON_VERSION="0.7.0" +TACHYON_VERSION="0.7.1" TACHYON_TGZ="tachyon-${TACHYON_VERSION}-bin.tar.gz" TACHYON_URL="https://github.com/amplab/tachyon/releases/download/v${TACHYON_VERSION}/${TACHYON_TGZ}" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
