Skip to content

Commit eb13288

Browse files
committed
Remove pubspec author and outdated URLs
1 parent 5574029 commit eb13288

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2
2+
3+
* Fix a number of lints affecting package maintenance score.
4+
15
## 0.1.1+3
26

37
* Support the latest `pkg:http` release.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Middleware for the [`http`](https://pub.dartlang.org/packages/http) package that
1+
Middleware for the [`http`](https://pub.dev/packages/http) package that
22
transparently retries failing requests.
33

44
To use this, just create an [`RetryClient`][RetryClient] that wraps the
55
underlying [`http.Client`][Client]:
66

7-
[RetryClient]: https://www.dartdocs.org/documentation/http_retry/latest/http_retry/RetryClient-class.html
8-
[Client]: https://www.dartdocs.org/documentation/http/latest/http/Client-class.html
7+
[RetryClient]: https://pub.dev/documentation/http_retry/latest/http_retry/RetryClient-class.html
8+
[Client]: https://pub.dev/documentation/http/latest/http/Client-class.html
99

1010
```dart
1111
import 'package:http/http.dart' as http;
@@ -23,4 +23,4 @@ Temporary Failure up to three retries. It waits 500ms before the first retry,
2323
and increases the delay by 1.5x each time. All of this can be customized using
2424
the [`new RetryClient()`][new RetryClient] constructor.
2525

26-
[new RetryClient]: https://www.dartdocs.org/documentation/http_retry/latest/http_retry/RetryClient/RetryClient.html
26+
[new RetryClient]: https://pub.dev/documentation/http_retry/latest/http_retry/RetryClient/RetryClient.html

pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: http_retry
2-
version: 0.1.1+3
2+
version: 0.1.2-dev
33

44
description: HTTP client middleware that automatically retries requests.
5-
author: Dart Team <[email protected]>
65
homepage: https://github.com/dart-lang/http_retry
76

87
environment:

0 commit comments

Comments
 (0)