Skip to content

Commit 8aaab5f

Browse files
committed
Release version 8.0.2
1 parent c8c71a8 commit 8aaab5f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ Java 1.8 or above.
1212
<dependency>
1313
<groupId>io.minio</groupId>
1414
<artifactId>minio</artifactId>
15-
<version>8.0.1</version>
15+
<version>8.0.2</version>
1616
</dependency>
1717
```
1818

1919
## Gradle usage
2020
```
2121
dependencies {
22-
compile 'io.minio:minio:8.0.1'
22+
compile 'io.minio:minio:8.0.2'
2323
}
2424
```
2525

2626
## JAR download
27-
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.0.1/)
27+
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.0.2/)
2828

2929
## Quick Start Example - File Uploader
3030
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
@@ -91,12 +91,12 @@ public class FileUploader {
9191

9292
#### Compile FileUploader
9393
```sh
94-
$ javac -cp minio-8.0.1-all.jar FileUploader.java
94+
$ javac -cp minio-8.0.2-all.jar FileUploader.java
9595
```
9696

9797
#### Run FileUploader
9898
```sh
99-
$ java -cp minio-8.0.1-all.jar:. FileUploader
99+
$ java -cp minio-8.0.2-all.jar:. FileUploader
100100
'/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'.
101101

102102
$ mc ls play/asiatrip/

0 commit comments

Comments
 (0)