Skip to content

Commit

Permalink
Prepare for 0.7.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinjia committed Jul 18, 2015
1 parent f26567a commit b0d6d66
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Tachyon
=======

The master branch is in version 0.7.0-SNAPSHOT:
The master branch is in version 0.8.0-SNAPSHOT:

- [Tachyon Homepage](http://www.tachyonproject.org)
- [Contribute to Tachyon](http://tachyon-project.org/master/Contributing-to-Tachyon.html) and
Expand All @@ -23,24 +23,24 @@ The master branch is in version 0.7.0-SNAPSHOT:
<dependency>
<groupId>org.tachyonproject</groupId>
<artifactId>tachyon-client</artifactId>
<version>0.6.4</version>
<version>0.7.0</version>
</dependency>
```

#### Gradle

```groovy
compile 'org.tachyonproject:tachyon-client:0.6.4'
compile 'org.tachyonproject:tachyon-client:0.7.0'
```

#### Apache Ant
```xml
<dependency org="org.tachyonproject" name="tachyon" rev="0.6.4">
<dependency org="org.tachyonproject" name="tachyon" rev="0.7.0">
<artifact name="tachyon-client" type="jar" />
</dependency>
```

#### SBT
```
libraryDependencies += "org.tachyonproject" % "tachyon-client" % "0.6.4"
libraryDependencies += "org.tachyonproject" % "tachyon-client" % "0.7.0"
```
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ highlighter: pygments
markdown: kramdown

# These allow the documentation to be updated with new releases of Tachyon.
TACHYON_RELEASED_VERSION: 0.6.4
TACHYON_MASTER_VERSION_SHORT: 0.7.0-SNAPSHOT
TACHYON_RELEASED_VERSION: 0.7.0
TACHYON_MASTER_VERSION_SHORT: 0.7.0
2 changes: 1 addition & 1 deletion libexec/tachyon-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ this="$config_bin/$script"
# This will set the default installation for a tarball installation while os distributors can create
# their own tachyon-layout.sh file to set system installation locations.
if [ -z "$TACHYON_SYSTEM_INSTALLATION" ]; then
VERSION=0.7.0-SNAPSHOT
VERSION=0.7.0
export TACHYON_PREFIX=`dirname $(dirname "$this")`
export TACHYON_HOME=${TACHYON_PREFIX}
export TACHYON_CONF_DIR="$TACHYON_HOME/conf"
Expand Down

0 comments on commit b0d6d66

Please sign in to comment.