Skip to content

Commit

Permalink
Prepare for v1.7.1 final
Browse files Browse the repository at this point in the history
  • Loading branch information
aaudiber committed Mar 27, 2018
1 parent d4985d1 commit e8fd76d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,26 @@ implementing HDFS's file system API.
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-client-fs</artifactId>
<version>1.7.0</version>
<version>1.7.1</version>
</dependency>
```

#### Gradle

```groovy
compile 'org.alluxio:alluxio-core-client-fs:1.7.0'
compile 'org.alluxio:alluxio-core-client-fs:1.7.1'
```

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

#### SBT
```
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "1.7.0"
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "1.7.1"
```

## Contributing
Expand Down
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ kramdown:

# For release candidates and release branches, this should match the pom.xml Alluxio version, e.g. "1.5.0" or "1.5.0-RC1"
# For master branch, this should be the latest released version, e.g. "1.5.0"
ALLUXIO_RELEASED_VERSION: 1.7.0
ALLUXIO_RELEASED_VERSION: 1.7.1
# This should be the same as ALLUXIO_RELEASED_VERSION, except on master branch, where it should be "master"
ALLUXIO_MASTER_VERSION_SHORT: 1.7.0
ALLUXIO_MASTER_VERSION_SHORT: 1.7.1
# For release candidates and release branches, this should be the major Alluxio version, e.g. both 1.5.0 and 1.5.0-RC1 should use "1.5"
# For master branch, this should be "master"
ALLUXIO_MAJOR_VERSION: 1.7
# We must inline the version string (e.g., "1.4.0-SNAPSHOT") rather than using the macro of Alluxio version.
# Otherwise the macro name remains in the output.
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-1.7.0-client.jar
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-1.7.1-client.jar

# These attach the pages of different languages with different 'lang' attributes
defaults:
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/table/common-configuration.csv
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ alluxio.underfs.s3a.secure.http.enabled,false
alluxio.underfs.s3a.server.side.encryption.enabled,false
alluxio.underfs.s3a.signer.algorithm,
alluxio.underfs.s3a.socket.timeout,50sec
alluxio.version,1.7.0
alluxio.version,1.7.1
alluxio.web.resources,${alluxio.home}/core/server/common/src/main/webapp
alluxio.web.threads,1
alluxio.work.dir,${alluxio.home}
Expand Down
2 changes: 1 addition & 1 deletion integration/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

FROM openjdk:8-jdk-alpine

ARG ALLUXIO_TARBALL=http://downloads.alluxio.org/downloads/files/1.7.0/alluxio-1.7.0-bin.tar.gz
ARG ALLUXIO_TARBALL=http://downloads.alluxio.org/downloads/files/1.7.1/alluxio-1.7.1-bin.tar.gz

RUN apk add --update bash && \
rm -rf /var/cache/apk/*
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.7.1-SNAPSHOT</version>
<version>1.7.1</version>
</parent>
<name>Alluxio Integration - YARN</name>
<artifactId>alluxio-integration-yarn</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion libexec/alluxio-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ this="${config_bin}/${script}"

# This will set the default installation for a tarball installation while os distributors can
# set system installation locations.
VERSION=1.7.1-SNAPSHOT
VERSION=1.7.1
ALLUXIO_HOME=$(dirname $(dirname "${this}"))
ALLUXIO_ASSEMBLY_CLIENT_JAR="${ALLUXIO_HOME}/assembly/client/target/alluxio-assembly-client-${VERSION}-jar-with-dependencies.jar"
ALLUXIO_ASSEMBLY_SERVER_JAR="${ALLUXIO_HOME}/assembly/server/target/alluxio-assembly-server-${VERSION}-jar-with-dependencies.jar"
Expand Down

0 comments on commit e8fd76d

Please sign in to comment.