Skip to content

Commit

Permalink
Prepare for 1.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinjia committed Oct 7, 2016
1 parent 6bde0ad commit a36dcd1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -23,26 +23,26 @@ The master branch is in version 1.3.0-SNAPSHOT:
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-client</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
</dependency>
```

#### Gradle

```groovy
compile 'org.alluxio:alluxio-core-client:1.2.0'
compile 'org.alluxio:alluxio-core-client:1.3.0'
```

#### Apache Ant
```xml
<dependency org="org.alluxio" name="alluxio" rev="1.2.0">
<dependency org="org.alluxio" name="alluxio" rev="1.3.0">
<artifact name="alluxio-core-client" type="jar" />
</dependency>
```

#### SBT
```
libraryDependencies += "org.alluxio" % "alluxio-core-client" % "1.2.0"
libraryDependencies += "org.alluxio" % "alluxio-core-client" % "1.3.0"
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion libexec/alluxio-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit a36dcd1

Please sign in to comment.