2.0.1
This commit is contained in:
parent
fdb37660b2
commit
7ead5054d9
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
# 2.0.1
|
||||
* Change `BaseAngelClient` constructor to accept `dynamic` instead of `String` for `baseUrl.
|
||||
|
||||
# 2.0.0
|
||||
* Deprecate `basePath` in favor of `baseUrl`.
|
||||
* `Angel` now extends `http.Client`.
|
||||
|
|
|
@ -57,7 +57,7 @@ abstract class BaseAngelClient extends Angel {
|
|||
@override
|
||||
Stream<AngelAuthResult> get onAuthenticated => _onAuthenticated.stream;
|
||||
|
||||
BaseAngelClient(this.client, String basePath) : super(basePath);
|
||||
BaseAngelClient(this.client, baseUrl) : super(baseUrl);
|
||||
|
||||
@override
|
||||
Future<AngelAuthResult> authenticate(
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel_client
|
||||
version: 2.0.0
|
||||
version: 2.0.1
|
||||
description: Support for querying Angel servers in the browser, Flutter, and command-line.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/angel_client
|
||||
|
|
Loading…
Reference in a new issue