Skip to content

Commit

Permalink
Update to 1.5.0-SNAPSHOT.
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinjia committed Jan 13, 2017
2 parents 5cfb5bf + 74e70b6 commit 30e131d
Show file tree
Hide file tree
Showing 30 changed files with 35 additions and 35 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.4.0-SNAPSHOT:
The master branch is in version 1.5.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.4.0-SNAPSHOT:
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-client</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

#### Gradle

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

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

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

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-assemblies</artifactId>
<name>Alluxio Assemblies</name>
Expand Down
2 changes: 1 addition & 1 deletion core/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-core-client</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion core/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-core-common</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-core</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion core/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-core-server</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ kramdown:
syntax_highlighter: rouge

# These allow the documentation to be updated with new releases of Alluxio.
ALLUXIO_RELEASED_VERSION: 1.3.0
ALLUXIO_RELEASED_VERSION: 1.4.0
# For example, "master" for the master branch, and 1.1 for 1.1.x releases and release candidates.
ALLUXIO_MASTER_VERSION_SHORT: master
# We must inline the version string (e.g., "1.4.0-SNAPSHOT") rather than using the macro defined above.
# Otherwise the macro name remains in the output.
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/core/client/target/alluxio-core-client-1.4.0-SNAPSHOT-jar-with-dependencies.jar
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/core/client/target/alluxio-core-client-1.5.0-SNAPSHOT-jar-with-dependencies.jar

# These attach the pages of different languages with different 'lang' attributes
defaults:
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-examples</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion integration/fuse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-integration</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-integration-fuse</artifactId>
<name>Alluxio Integration - FUSE</name>
Expand Down
2 changes: 1 addition & 1 deletion integration/mesos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>alluxio-integration</artifactId>
<groupId>org.alluxio</groupId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<name>Alluxio Integration - Mesos</name>
<artifactId>alluxio-integration-mesos</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-integration</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion integration/yarn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>alluxio-integration</artifactId>
<groupId>org.alluxio</groupId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<name>Alluxio Integration - YARN</name>
<artifactId>alluxio-integration-yarn</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion keyvalue/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-keyvalue</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-keyvalue-client</artifactId>
<name>Alluxio Key Value - Client</name>
Expand Down
2 changes: 1 addition & 1 deletion keyvalue/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-keyvalue</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-keyvalue-common</artifactId>
<name>Alluxio Key Value - Common Utilities</name>
Expand Down
2 changes: 1 addition & 1 deletion keyvalue/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-keyvalue</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion keyvalue/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-keyvalue</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-keyvalue-server</artifactId>
<name>Alluxio Key Value - Server</name>
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.4.0-SNAPSHOT
VERSION=1.5.0-SNAPSHOT
ALLUXIO_HOME=$(dirname $(dirname "${this}"))
ALLUXIO_JARS="${ALLUXIO_HOME}/assembly/target/alluxio-assemblies-${VERSION}-jar-with-dependencies.jar"
ALLUXIO_CONF_DIR="${ALLUXIO_CONF_DIR:-${ALLUXIO_HOME}/conf}"
Expand Down
2 changes: 1 addition & 1 deletion minicluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>alluxio-parent</artifactId>
<groupId>org.alluxio</groupId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Alluxio Parent</name>
<description>Parent POM of Alluxio project: a Memory-Speed Virtual Distributed Storage System</description>
Expand Down
2 changes: 1 addition & 1 deletion shell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-shell</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-tests</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion underfs/gcs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-gcs</artifactId>
<name>Alluxio Under File System - GCS</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/glusterfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-glusterfs</artifactId>
<name>Alluxio Under File System - Gluster FS</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/hdfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-hdfs</artifactId>
<name>Alluxio Under File System - HDFS</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/local/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-local</artifactId>
<name>Alluxio Under File System - Local FS</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/oss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-oss</artifactId>
<name>Alluxio Under File System - Aliyun OSS</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-parent</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion underfs/s3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-s3</artifactId>
<name>Alluxio Under File System - S3</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/s3a/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-s3a</artifactId>
<name>Alluxio Under File System - S3A</name>
Expand Down
2 changes: 1 addition & 1 deletion underfs/swift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-underfs</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
</parent>
<artifactId>alluxio-underfs-swift</artifactId>
<name>Alluxio Under File System - Swift</name>
Expand Down

0 comments on commit 30e131d

Please sign in to comment.