From a36dcd1fdb485dc4a1d5877ccac87af1b6385817 Mon Sep 17 00:00:00 2001 From: Calvin Jia Date: Thu, 6 Oct 2016 22:52:30 -0700 Subject: [PATCH] Prepare for 1.3.0 release. --- README.md | 10 +++++----- docs/_config.yml | 2 +- libexec/alluxio-config.sh | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 64e37bc85462..f9dbda81f9ce 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Alluxio (formerly Tachyon) ======= -The master branch is in version 1.3.0-SNAPSHOT: +The master branch is in version 1.4.0-SNAPSHOT: - [Alluxio Open Source Website](http://www.alluxio.org/) | [Alluxio Latest Release Document](http://www.alluxio.org/documentation/) | [Master Branch Document](http://alluxio.org/documentation/master/) | [Alluxio Inc.](http://www.alluxio.com/) - [Contribute to Alluxio](http://alluxio.org/documentation/master/en/Contributing-to-Alluxio.html) and @@ -23,26 +23,26 @@ The master branch is in version 1.3.0-SNAPSHOT: org.alluxio alluxio-core-client - 1.2.0 + 1.3.0 ``` #### Gradle ```groovy -compile 'org.alluxio:alluxio-core-client:1.2.0' +compile 'org.alluxio:alluxio-core-client:1.3.0' ``` #### Apache Ant ```xml - + ``` #### SBT ``` -libraryDependencies += "org.alluxio" % "alluxio-core-client" % "1.2.0" +libraryDependencies += "org.alluxio" % "alluxio-core-client" % "1.3.0" ``` ## Contributing diff --git a/docs/_config.yml b/docs/_config.yml index 8ed33632d504..2b4e12abac83 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -5,7 +5,7 @@ kramdown: syntax_highlighter: rouge # These allow the documentation to be updated with new releases of Alluxio. -ALLUXIO_RELEASED_VERSION: 1.2.0 +ALLUXIO_RELEASED_VERSION: 1.3.0 # For example, "master" for the master branch, and 1.1 for 1.1.x releases and release candidates. ALLUXIO_MASTER_VERSION_SHORT: 1.3.0 diff --git a/libexec/alluxio-config.sh b/libexec/alluxio-config.sh index a4140b22e635..2ade95ce4675 100755 --- a/libexec/alluxio-config.sh +++ b/libexec/alluxio-config.sh @@ -31,7 +31,7 @@ this="$config_bin/$script" # This will set the default installation for a tarball installation while os distributors can create # their own alluxio-layout.sh file to set system installation locations. if [[ -z "$ALLUXIO_SYSTEM_INSTALLATION" ]]; then - VERSION=1.3.0-SNAPSHOT + VERSION=1.3.0 ALLUXIO_HOME=$(dirname $(dirname "${this}")) ALLUXIO_CONF_DIR="${ALLUXIO_CONF_DIR:-${ALLUXIO_HOME}/conf}" ALLUXIO_LOGS_DIR="${ALLUXIO_LOGS_DIR:-${ALLUXIO_HOME}/logs}"