Skip to content

Commit

Permalink
new ver 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
djodjoni committed Mar 21, 2016
1 parent 7743ad0 commit 3240df0
Show file tree
Hide file tree
Showing 16 changed files with 58 additions and 33 deletions.
19 changes: 18 additions & 1 deletion CHLOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
Change Log
==========

NEXT Version 0.6.5 *(FUTURE-Dec-2015)*
NEXT Version 0.6.6 *(FUTURE-2016)*
----------------------------------

Version 0.6.5 *(21-Mar-2016)*
----------------------------------
* New: add OkHttp3 stack
* New: add ApacheHttp stack
* New: add Netty stack
* Fix: #28 requests cannot be canceled while looping in network for retry
* New: #32 add bitmap pool for NetworkImageView
* Fix: for https://code.google.com/p/android/issues/detail?id=194495
* Upd: #29 make Authenticator more generic
* New: #2 Add authenticator for proxy 407
* Upd: #35 add more customizable & manageable bitmap pool
* Upd: Improve network image view reset/refresh
* Upd: add default and error image ids on loader
* Upd: make listener factories more generic
* New: #33 add networkmanager and noconnection policy
* Upd: add error filter for dynamic retry policy

Version 0.6.4 *(23-Nov-2015)*
----------------------------------
* New: add retry policy factory in the queue
Expand Down
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Find [the latest JARs][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-XXX</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-XXX:0.6.4'
compile 'io.apptik.comm:jus-XXX:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand All @@ -49,13 +49,19 @@ Jus requires at minimum Java 7 or Android SDK 15.
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-okhttp.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-okhttp)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-okhttp/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-okhttp)
* [OkHttp3][jus-okhttp3] = OkHttp3 Client Stack for jus
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-okhttp3.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-okhttp3)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-okhttp3/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-okhttp3)
* [ApacheHttp][jus-apachehttp] = ApacheHttp Client Stack for jus
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-apachehttp.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-apachehttp)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-apachehttp/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-apachehttp)
* [Netty][jus-netty] = Netty Client Stack for jus
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-netty.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-netty)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-netty/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-netty)

* Jus for Android
* [Android jus][jus-android] - jus optimized for Android
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-android.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-android)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-android/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-android)
* [Reactive Android jus][jus-android-rx] - RxJava support for jus for Android
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-android-rx.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-android-rx)
[![VersionEye](https://www.versioneye.com/java/io.apptik.comm:jus-android-rx/badge.svg)](https://www.versioneye.com/java/io.apptik.comm:jus-android-rx)
* Data Serializers Support for jus
* [Gson][jus-gson] - support for Gson
[![Maven Central](https://img.shields.io/maven-central/v/io.apptik.comm/jus-gson.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/io.apptik.comm/jus-gson)
Expand Down Expand Up @@ -112,3 +118,5 @@ Jus requires at minimum Java 7 or Android SDK 15.
[rx-jus]: https://github.com/apptik/jus/tree/master/rx-jus
[jus-okhttp]: https://github.com/apptik/jus/tree/master/stack/jus-okhttp
[jus-okhttp3]: https://github.com/apptik/jus/tree/master/stack/jus-okhttp3
[jus-apachehttp]: https://github.com/apptik/jus/tree/master/stack/jus-apachehttp
[jus-netty]: https://github.com/apptik/jus/tree/master/stack/jus-netty
4 changes: 2 additions & 2 deletions android/jus-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-android</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-android:0.6.4'
compile 'io.apptik.comm:jus-android:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-gson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-gson</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-gson:0.6.4'
compile 'io.apptik.comm:jus-gson:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-jackson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-jackson</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-jackson:0.6.4'
compile 'io.apptik.comm:jus-jackson:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-jjson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-jjson</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-jjson:0.6.4'
compile 'io.apptik.comm:jus-jjson:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-moshi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-moshi</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-moshi:0.6.4'
compile 'io.apptik.comm:jus-moshi:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-protobuf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-protobuf</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-protobuf:0.6.4'
compile 'io.apptik.comm:jus-protobuf:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-simplexml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-simplexml</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-simplexml:0.6.4'
compile 'io.apptik.comm:jus-simplexml:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions converter/jus-wire/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-wire</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-wire:0.6.4'
compile 'io.apptik.comm:jus-wire:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=0.6.5.x-SNAPSHOT
VERSION_NAME=0.6.5
VERSION_CODE=21
GROUP=io.apptik.comm

Expand Down
4 changes: 2 additions & 2 deletions jus-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-java</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-java:0.6.4'
compile 'io.apptik.comm:jus-java:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions retro-jus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>retro-jus</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:retro-jus:0.6.4'
compile 'io.apptik.comm:retro-jus:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions rx-jus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>rx-jus</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:rx-jus:0.6.4'
compile 'io.apptik.comm:rx-jus:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions stack/jus-okhttp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-okhttp</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-okhttp:0.6.4'
compile 'io.apptik.comm:jus-okhttp:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down
4 changes: 2 additions & 2 deletions stack/jus-okhttp3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Download [the latest JAR][mvn] or grab via Maven:
<dependency>
<groupId>io.apptik.comm</groupId>
<artifactId>jus-okhttp3</artifactId>
<version>0.6.4</version>
<version>0.6.5</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.apptik.comm:jus-okhttp3:0.6.4'
compile 'io.apptik.comm:jus-okhttp3:0.6.5'
```

Downloads of the released versions are available in [Sonatype's `releases` repository][release].
Expand Down

0 comments on commit 3240df0

Please sign in to comment.