Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
v0.3.3 — Fixed missing options param (#8)
Browse files Browse the repository at this point in the history
* Fixed missing `options` param

* Fixed CHANGELOG.md
  • Loading branch information
jasonlessenich authored Feb 26, 2024
1 parent 640f075 commit 533524c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.3.3
- Fixed missing options param

## 0.3.2
- Added `RestrrBuilder#refresh`
- Fixed `RestrrOptions` and added `isWeb` attribute
Expand Down
2 changes: 1 addition & 1 deletion lib/src/restrr_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class RestrrBuilder {
}

Future<RestResponse<RestrrImpl>> _handleRefresh() async {
final RestrrImpl api = RestrrImpl._();
final RestrrImpl api = RestrrImpl._(options: options);
final RestResponse<User> response = await UserService(api: api).getSelf();
if (response.hasError) {
Restrr.log.warning('Failed to refresh session');
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: restrr
description: Dart package which allows to communicate with the financrr REST API.
version: 0.3.2
version: 0.3.3
repository: https://github.com/financrr/restrr

environment:
Expand Down

0 comments on commit 533524c

Please sign in to comment.