Skip to content

Commit

Permalink
Updated for version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Myles committed Sep 20, 2019
1 parent 3940def commit ae8f9eb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
Change Log
==========

Version 1.4.5 *(2019-09-20)*
----------------------------
* Fix: `AferoClient.resetPasswordWithCode` now actually works rather than returning a 400 error.
* New: AferoLab sample app now has a basic "Forgot Password" flow.

Version 1.4.4 *(2019-09-09)*
----------------------------
* Fixed: Added logic to `ConclaveDeviceEventSource.stop()` to clear the access credentials and account id.
* Fix: Added logic to `ConclaveDeviceEventSource.stop()` to clear the access credentials and account id.
* Removed: `ConclaveDeviceEventSource.setAccountId()` since this function is defunct.

Version 1.4.3 *(2019-08-22)*
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
author: Tony Myles
title: "AferoJavaSDK"
date: 2019-Sept-9
status: 1.4.4
date: 2019-Sept-20
status: 1.4.5
---

# AferoJavaSDK
Expand Down Expand Up @@ -32,23 +32,23 @@ The SDK is composed of four separate modules.

The `afero-sdk-core` module is required for base functionality such as interacting with the Afero Cloud and manipulating devices.
```Gradle
implementation 'io.afero.sdk:afero-sdk-core:1.4.4'
implementation 'io.afero.sdk:afero-sdk-core:1.4.5'
```

The `afero-sdk-client-retrofit2` module provides an optional implementation of the AferoClient REST API interface using [Retrofit2](http://square.github.io/retrofit/) and [okhttp3](http://square.github.io/okhttp/). If you choose not to include this module in your project, you will need to develop your own implementation of AferoClient using your preferred http client library.

```Gradle
implementation 'io.afero.sdk:afero-sdk-client-retrofit2:1.4.4'
implementation 'io.afero.sdk:afero-sdk-client-retrofit2:1.4.5'
```

The `afero-sdk-android` module is required for Android development.
```Gradle
implementation 'io.afero.sdk:afero-sdk-android:1.4.4'
implementation 'io.afero.sdk:afero-sdk-android:1.4.5'
```

The `afero-sdk-softhub` module is required for soft hub functionality on Android.
```Gradle
implementation 'io.afero.sdk:afero-sdk-softhub:1.4.4'
implementation 'io.afero.sdk:afero-sdk-softhub:1.4.5'
implementation "io.afero.sdk:hubby:1.0.844@aar"
```

Expand Down

0 comments on commit ae8f9eb

Please sign in to comment.