Skip to content

Commit

Permalink
Updates version information for 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangomz committed Nov 26, 2021
1 parent 1da16b1 commit 03f9760
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,7 @@
* Fixes error converting DateTime to JSON
* Adds support for documents pages
* Updates examples

## 0.0.9
> Release date: 26/Nov/2021
* Adds sandbox support
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ Token token = await UMMobileSDK
.auth()
.getToken(username: 1234567, password: 'YOUR_PASSWORD');
// Get token for testing with sandbox services
Token sandboxToken = await UMMobileSDK
.auth()
.getToken(
username: 1234567,
password: 'YOUR_PASSWORD',
sandbox: true,
);
// Initialize using the access token
UMMobileSDK sdk = UMMobileSDK(token: token.accessToken);
```
Expand Down
9 changes: 9 additions & 0 deletions example/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ Token token = await UMMobileSDK
.auth()
.getToken(username: 1234567, password: 'YOUR_PASSWORD');
// Get token for testing with sandbox services
Token sandboxToken = await UMMobileSDK
.auth()
.getToken(
username: 1234567,
password: 'YOUR_PASSWORD',
sandbox: true,
);
// Initialize using the access token
UMMobileSDK sdk = UMMobileSDK(token: token.accessToken);
```
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ummobile_sdk
description: The SDK package used in the UMMobile App to connect with the server.
version: 0.0.8
version: 0.0.9
homepage: https://github.com/UMMobile/ummobile_sdk

environment:
Expand Down

0 comments on commit 03f9760

Please sign in to comment.