Skip to content

Commit 7c5234e

Browse files
committed
Release 0.3.0. Fixed for Firebase Storage 5.
1 parent 64a06c0 commit 7c5234e

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [0.3.0] - 06/11/2020
2+
* Merged [PR #20](https://github.com/mattreid1/firebase_image/pull/20) to work with Firebase Storage 5.0.0
3+
* sqflite dependency change
4+
* Minor formatting updates
5+
16
## [0.2.0] - 25/08/2020
27
* Merged [PR #16](https://github.com/mattreid1/firebase_image/pull/16) for dependency upgrades.
38
* Merged [PR #9](https://github.com/mattreid1/firebase_image/pull/9) for general code uppgrades.
@@ -28,6 +33,5 @@
2833
* Formatted code.
2934

3035
## [0.0.1] - 22/09/2019
31-
3236
* Can download, save and render images from Firebase Cloud Storage.
3337
* Basic caching system works but no object expiration time or read monitoring as of yet.

lib/src/cache_refresh_strategy.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ enum CacheRefreshStrategy {
55
// NEVER will never check for any updates. It will still reload a previously-
66
// cached version that has been cleaned up by the OS.
77
NEVER,
8-
}
8+
}

pubspec.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ packages:
258258
name: sqflite
259259
url: "https://pub.dartlang.org"
260260
source: hosted
261-
version: "1.3.2+1"
261+
version: "1.3.1+2"
262262
sqflite_common:
263263
dependency: transitive
264264
description:
@@ -337,5 +337,5 @@ packages:
337337
source: hosted
338338
version: "0.1.2"
339339
sdks:
340-
dart: ">=2.10.2 <2.11.0"
341-
flutter: ">=1.22.2 <2.0.0"
340+
dart: ">=2.10.0-110 <2.11.0"
341+
flutter: ">=1.12.13+hotfix.5 <2.0.0"

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: firebase_image
22
description: A cached Flutter ImageProvider for Firebase Cloud Storage image objects.
3-
version: 0.2.0
3+
version: 0.3.0
44
homepage: https://github.com/mattreid1/firebase_image
55

66
environment:
@@ -12,7 +12,7 @@ dependencies:
1212

1313
firebase_core: ^0.5.0
1414
firebase_storage: ^5.0.0
15-
sqflite: ^1.3.2+1
15+
sqflite: ^1.3.0
1616
path: ^1.7.0
1717
path_provider: ^1.6.24
1818

0 commit comments

Comments
 (0)