Skip to content

Commit

Permalink
Release version 8.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
minio-trusted committed Oct 21, 2021
1 parent 6afe77b commit b7c5b34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ Java 1.8 or above.
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.3.1</version>
<version>8.3.3</version>
</dependency>
```

## Gradle usage
```
dependencies {
compile 'io.minio:minio:8.3.1'
compile 'io.minio:minio:8.3.3'
}
```

## JAR download
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.3.1/)
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/8.3.3/)

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

#### Compile FileUploader
```sh
$ javac -cp minio-8.3.1-all.jar FileUploader.java
$ javac -cp minio-8.3.3-all.jar FileUploader.java
```

#### Run FileUploader
```sh
$ java -cp minio-8.3.1-all.jar:. FileUploader
$ java -cp minio-8.3.3-all.jar:. FileUploader
'/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'.

$ mc ls play/asiatrip/
Expand Down

0 comments on commit b7c5b34

Please sign in to comment.