Skip to content

Commit

Permalink
Bump released version to 1.8.1 (Alluxio#7911)
Browse files Browse the repository at this point in the history
  • Loading branch information
apc999 authored and aaudiber committed Oct 1, 2018
1 parent 4c22e33 commit 775e1c3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.8.0</version>
<version>1.8.1</version>
</dependency>
```

#### Gradle

```groovy
compile 'org.alluxio:alluxio-core-client-fs:1.8.0'
compile 'org.alluxio:alluxio-core-client-fs:1.8.1'
```

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

#### SBT
```
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "1.8.0"
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "1.8.1"
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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.8.0
ALLUXIO_RELEASED_VERSION: 1.8.1
# This should be the same as ALLUXIO_RELEASED_VERSION, except on master branch, where it should be "master"
ALLUXIO_MASTER_VERSION_SHORT: master
# 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"
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.8.0/alluxio-1.8.0-bin.tar.gz
ARG ALLUXIO_TARBALL=http://downloads.alluxio.org/downloads/files/1.8.1/alluxio-1.8.1-bin.tar.gz

RUN apk add --update bash && \
rm -rf /var/cache/apk/*
Expand Down
2 changes: 1 addition & 1 deletion integration/docker/Dockerfile.fuse
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

FROM ubuntu:16.04

ARG ALLUXIO_TARBALL=http://downloads.alluxio.org/downloads/files/1.8.0/alluxio-1.8.0-bin.tar.gz
ARG ALLUXIO_TARBALL=http://downloads.alluxio.org/downloads/files/1.8.1/alluxio-1.8.1-bin.tar.gz
ENV ENABLE_FUSE true

RUN apt-get update && apt-get install -y --no-install-recommends software-properties-common && \
Expand Down

0 comments on commit 775e1c3

Please sign in to comment.