Skip to content

Commit

Permalink
Bump to new version 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Nov 25, 2015
1 parent f9d1d33 commit 4bb7bd5
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.5</version>
<version>0.2.6</version>
</dependency>
```

## Download from gradle

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

## Download from JAR

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

## Example
```java
Expand Down Expand Up @@ -78,15 +78,15 @@ public class HelloListBuckets {

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

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

```bash
$ git clone https://github.com/minio/minio-java
$ cd minio-java
[edit examples/ListBuckets.java]
$ 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
$ cd minio-java/examples; wget http://repo1.maven.org/maven2/io/minio/minio/0.2.6/minio-0.2.6-all.jar;
$ javac -cp 'minio-0.2.6-all.jar' ListBuckets.java
$ java -cp '.:minio-0.2.6-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 @@ -46,7 +46,7 @@ if (project.properties.containsKey('ossrhPassword')) {

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

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit 4bb7bd5

Please sign in to comment.