Skip to content

Commit a455c11

Browse files
committed
update to 7.1.3
1 parent 9337c05 commit a455c11

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ Java 1.8 or above, with one of the following environments:
1515
<dependency>
1616
<groupId>io.minio</groupId>
1717
<artifactId>minio</artifactId>
18-
<version>7.1.2</version>
18+
<version>7.1.3</version>
1919
</dependency>
2020
```
2121

2222
## Download from gradle
2323
```xml
2424
dependencies {
25-
compile 'io.minio:minio:7.1.2'
25+
compile 'io.minio:minio:7.1.3'
2626
}
2727
```
2828

2929
## Download from JAR
30-
You can download the latest [JAR](https://repo1.maven.org/maven2/io/minio/minio/7.1.2/) directly from maven.
30+
You can download the latest [JAR](https://repo1.maven.org/maven2/io/minio/minio/7.1.3/) directly from maven.
3131

3232
## Quick Start Example - File Uploader
3333
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
@@ -60,7 +60,7 @@ public class FileUploader {
6060
MinioClient minioClient = new MinioClient("https://play.min.io", "Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG");
6161

6262
// Check if the bucket already exists.
63-
boolean isExist =
63+
boolean isExist =
6464
minioClient.bucketExists(BucketExistsArgs.builder().bucket("asiatrip").build());
6565
if(isExist) {
6666
System.out.println("Bucket already exists.");
@@ -81,12 +81,12 @@ public class FileUploader {
8181

8282
#### Compile FileUploader
8383
```sh
84-
javac -cp "minio-7.1.2-all.jar" FileUploader.java
84+
javac -cp "minio-7.1.3-all.jar" FileUploader.java
8585
```
8686

8787
#### Run FileUploader
8888
```sh
89-
java -cp "minio-7.1.2-all.jar:." FileUploader
89+
java -cp "minio-7.1.3-all.jar:." FileUploader
9090
/home/user/Photos/asiaphotos.zip is successfully uploaded as asiaphotos.zip to `asiatrip` bucket.
9191

9292
mc ls play/asiatrip/

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ apply plugin: "de.marcphilipp.nexus-publish"
3434

3535
allprojects {
3636
group = 'io.minio'
37-
version = '7.1.3'
37+
version = '7.1.4'
3838
if (!project.hasProperty('release')) {
3939
version += '-DEV'
4040
}

0 commit comments

Comments
 (0)