Skip to content

Commit ac4def6

Browse files
authored
Fix publish validation (#1)
1 parent 9957a61 commit ac4def6

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.0.1] - 2020-08-08
2+
3+
* Add missing `http` dependency
4+
* Minor documentation changes
5+
16
## [1.0.0] - 2020-08-07
27

38
* Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[Firebase Performance Monitoring](https://firebase.google.com/docs/perf-mon) to automatically
55
record traces for network requests.
66

7-
![](docs/firebase_perf_console_trace.png "Firebase Performance Console with a automatically collected network trace")
7+
![](doc/firebase_perf_console_trace.png "Firebase Performance Console with a automatically collected network trace")
88

99
## Background
1010

pubspec.lock

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,21 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.4.1"
10+
version: "2.4.2"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
1414
name: boolean_selector
1515
url: "https://pub.dartlang.org"
1616
source: hosted
1717
version: "2.0.0"
18+
characters:
19+
dependency: transitive
20+
description:
21+
name: characters
22+
url: "https://pub.dartlang.org"
23+
source: hosted
24+
version: "1.0.0"
1825
charcode:
1926
dependency: transitive
2027
description:
@@ -35,7 +42,7 @@ packages:
3542
name: collection
3643
url: "https://pub.dartlang.org"
3744
source: hosted
38-
version: "1.14.12"
45+
version: "1.14.13"
3946
convert:
4047
dependency: transitive
4148
description:
@@ -89,7 +96,7 @@ packages:
8996
source: sdk
9097
version: "0.0.0"
9198
http:
92-
dependency: transitive
99+
dependency: "direct main"
93100
description:
94101
name: http
95102
url: "https://pub.dartlang.org"
@@ -115,7 +122,7 @@ packages:
115122
name: matcher
116123
url: "https://pub.dartlang.org"
117124
source: hosted
118-
version: "0.12.6"
125+
version: "0.12.8"
119126
meta:
120127
dependency: transitive
121128
description:
@@ -225,7 +232,7 @@ packages:
225232
name: stack_trace
226233
url: "https://pub.dartlang.org"
227234
source: hosted
228-
version: "1.9.3"
235+
version: "1.9.5"
229236
stream_channel:
230237
dependency: transitive
231238
description:
@@ -260,14 +267,14 @@ packages:
260267
name: test_api
261268
url: "https://pub.dartlang.org"
262269
source: hosted
263-
version: "0.2.16"
270+
version: "0.2.17"
264271
typed_data:
265272
dependency: transitive
266273
description:
267274
name: typed_data
268275
url: "https://pub.dartlang.org"
269276
source: hosted
270-
version: "1.1.6"
277+
version: "1.2.0"
271278
uuid:
272279
dependency: transitive
273280
description:
@@ -290,5 +297,5 @@ packages:
290297
source: hosted
291298
version: "0.1.0"
292299
sdks:
293-
dart: ">=2.8.0 <3.0.0"
300+
dart: ">=2.9.0-14.0.dev <3.0.0"
294301
flutter: ">=1.12.13+hotfix.5 <2.0.0"

pubspec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: traced_cache_manager
22
description: CacheManager implementation that integrates with Firebase Performance Monitoring to automatically record traces for network requests.
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://pub.dev/packages/traced_cache_manager
55
repository: https://github.com/nareddyt/traced_cache_manager
66
issue_tracker: https://github.com/nareddyt/traced_cache_manager/issues
@@ -12,6 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414

15+
http: ^0.12.2
1516
path: ^1.7.0
1617
path_provider: ^1.6.11
1718
flutter_cache_manager: ^1.4.1

0 commit comments

Comments
 (0)