Skip to content

Commit

Permalink
Bump to 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Aug 18, 2015
1 parent c05eef9 commit c284d47
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```

## Download from gradle

```gradle
dependencies {
compile 'io.minio:minio:0.2.4'
compile 'io.minio:minio:0.2.5'
}
```

## Download from JAR

You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/0.2.4/) directly from maven.
You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/0.2.5/) directly from maven.

## Example
```java
Expand Down Expand Up @@ -72,14 +72,14 @@ public class HelloListBuckets {

Simply edit the example java program to include your access credentials and follow the steps below.

NOTE: `minio-0.2.4-all.jar` includes all the necessary dependencies to run these examples.
NOTE: `minio-0.2.5-all.jar` includes all the necessary dependencies to run these examples.

```bash
$ git clone https://github.com/minio/minio-java
[edit examples/ListBuckets.java]
$ cd minio-java/examples; wget http://repo1.maven.org/maven2/io/minio/minio/0.2.4/minio-0.2.4-all.jar;
$ javac -cp 'minio-0.2.4-all.jar' ListBuckets.java
$ java -cp '.:minio-0.2.4-all.jar' ListBuckets
$ cd minio-java/examples; wget http://repo1.maven.org/maven2/io/minio/minio/0.2.5/minio-0.2.5-all.jar;
$ javac -cp 'minio-0.2.5-all.jar' ListBuckets.java
$ java -cp '.:minio-0.2.5-all.jar' ListBuckets
bucket1
bucket2
....
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (project.properties.containsKey('ossrhPassword')) {

group = 'io.minio'
archivesBaseName = 'minio'
version = '0.2.4'
version = '0.2.5'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit c284d47

Please sign in to comment.