Skip to content

Commit

Permalink
Merge pull request #8 from egeniq/f/bump_version
Browse files Browse the repository at this point in the history
Bump version to 1.1.2
  • Loading branch information
dzolnai authored Oct 31, 2017
2 parents 8bbfd0a + 49212e0 commit 0434b4d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

## 1.1.2

The DELETE call returned an empty string body on success, which would throw an exception when being parsed as JSON. This is now converted to an empty JSON object result.

## 1.1.1

Added the properties `createdAt` and `updatedAt` to the `Channel` class in the `v2` package.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ libmsgs-android
To use this library in you application include this line in your `build.gradle`:

```
compile 'io.msgs:android-client:1.1@aar'
compile 'io.msgs:android-client:1.1.2@aar'
```

If you want to use an OkHttp client instead of the default one, use

```
compile 'io.msgs:android-client-okhttp:1.1@aar'
compile 'io.msgs:android-client-okhttp:1.1.2@aar'
```
instead, and call `setClient(new MsgsOkHttpClient(okHttpClient))` on your Msgs client builder to use OkHTTP for executing the API calls.
4 changes: 2 additions & 2 deletions android-client-okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 9
targetSdkVersion 26
versionCode 1
versionName "1.1.1"
versionName "1.1.2"
}

buildTypes {
Expand All @@ -33,7 +33,7 @@ ext {
siteUrl = 'https://github.com/egeniq/libmsgs-android'
gitUrl = 'https://github.com/egeniq/libmsgs-android'

libraryVersion = "1.1.1"
libraryVersion = "1.1.2"

developerId = 'egeniq'
developerName = 'Egeniq B.V'
Expand Down
4 changes: 2 additions & 2 deletions android-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 9
targetSdkVersion 26
versionCode 1
versionName "1.1.1"
versionName "1.1.2"
}
buildTypes {
release {
Expand Down Expand Up @@ -35,7 +35,7 @@ ext {
siteUrl = 'https://github.com/egeniq/libmsgs-android'
gitUrl = 'https://github.com/egeniq/libmsgs-android'

libraryVersion = "1.1.1"
libraryVersion = "1.1.2"

developerId = 'egeniq'
developerName = 'Egeniq B.V'
Expand Down

0 comments on commit 0434b4d

Please sign in to comment.