forked from aloisdeniel/dio_retry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33f708c
commit 58fd6bd
Showing
3 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Dart", | ||
"program": "bin/main.dart", | ||
"request": "launch", | ||
"type": "dart" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 1.0.0 | ||
## 0.1.9-beta | ||
|
||
- Support Dio 3 which works on Flutter web | ||
|
||
## 0.1.8-beta | ||
|
||
- Initial version, created by Stagehand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: dio_retry | ||
description: A starting point for Dart libraries or applications. | ||
version: 0.1.8-beta | ||
version: 0.1.9-beta | ||
homepage: https://github.com/aloisdeniel/dio_retry | ||
author: aloisdeniel <[email protected]> | ||
|
||
|
@@ -10,7 +10,7 @@ environment: | |
dependencies: | ||
meta: ^1.1.6 | ||
logging: ^0.11.3 | ||
dio: ^2.1.7 | ||
dio: ^3.0.0 | ||
|
||
dev_dependencies: | ||
pedantic: ^1.0.0 | ||
|