Skip to content

Commit e0166f2

Browse files
committed
Release version 8.5.15
1 parent 44bb8d4 commit e0166f2

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.5.14</version>
15+
<version>8.5.15</version>
1616
</dependency>
1717
```
1818

1919
## Gradle usage
2020
```
2121
dependencies {
22-
implementation("io.minio:minio:8.5.14")
22+
implementation("io.minio:minio:8.5.15")
2323
}
2424
```
2525

2626
## JAR download
27-
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.5.14/)
27+
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.5.15/)
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.
@@ -92,12 +92,12 @@ public class FileUploader {
9292

9393
#### Compile FileUploader
9494
```sh
95-
$ javac -cp minio-8.5.14-all.jar FileUploader.java
95+
$ javac -cp minio-8.5.15-all.jar FileUploader.java
9696
```
9797

9898
#### Run FileUploader
9999
```sh
100-
$ java -cp minio-8.5.14-all.jar:. FileUploader
100+
$ java -cp minio-8.5.15-all.jar:. FileUploader
101101
'/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'.
102102

103103
$ mc ls play/asiatrip/

0 commit comments

Comments
 (0)