Skip to content

Commit d3a08c4

Browse files
committed
upgrade dependacies && update exemple path
1 parent 563df16 commit d3a08c4

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
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.0+2
2+
* Add exemple && upgrade dependencies
3+
## 0.1.0+1
4+
* Add description
15
## 0.1.0
26

37
* Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# firebase_database_mocks
22

3-
[![Pub Version](https://img.shields.io/pub/v/firebase_database_mocks)](https://pub.dev/packages/firebase_database_mocks) [![style: effective dart](https://img.shields.io/badge/style-pedantic-blue)](https://github.com/google/pedantic)
3+
[![Pub Version](https://img.shields.io/pub/v/firebase_database_mocks)](https://pub.dev/packages/firebase_database_mocks) [![style: effective dart](https://img.shields.io/badge/style-pedantic-blue)](https://github.com/google/pedantic) [![test: passing](https://img.shields.io/badge/test-passing-green)](https://github.com/sitatec/firebase_database_mocks/tree/main/test)
44

55
Mocks library to write unit tests for FirebaseDatabase (real-time database). Get Instance
66
`MockFirebaseDatabase.instance`, then pass it around your project as if it were a
File renamed without changes.

pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,28 +140,28 @@ packages:
140140
name: firebase_core
141141
url: "https://pub.dartlang.org"
142142
source: hosted
143-
version: "0.5.3"
143+
version: "0.7.0"
144144
firebase_core_platform_interface:
145145
dependency: "direct main"
146146
description:
147147
name: firebase_core_platform_interface
148148
url: "https://pub.dartlang.org"
149149
source: hosted
150-
version: "2.1.0"
150+
version: "3.0.1"
151151
firebase_core_web:
152152
dependency: transitive
153153
description:
154154
name: firebase_core_web
155155
url: "https://pub.dartlang.org"
156156
source: hosted
157-
version: "0.2.1+1"
157+
version: "0.2.1+3"
158158
firebase_database:
159159
dependency: "direct main"
160160
description:
161161
name: firebase_database
162162
url: "https://pub.dartlang.org"
163163
source: hosted
164-
version: "4.4.0"
164+
version: "6.0.0"
165165
fixnum:
166166
dependency: transitive
167167
description:

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: firebase_database_mocks
22

3-
description: Fakes to write unit tests for FirebaseDatabase (real-time database). Get Instance MockFirebaseDatabase.instance, then pass it around your project as if it were a FirebaseDatabase.instance. This mock keep data in memory while test running.
3+
description: Fakes to write unit tests for FirebaseDatabase (real-time database).
44

5-
version: 0.1.0
5+
version: 0.1.0+2
66

77
repository: https://github.com/sitatec/firebase_database_mocks.git
88
homepage: https://github.com/sitatec/firebase_database_mocks.git
@@ -14,9 +14,9 @@ environment:
1414
dependencies:
1515
flutter:
1616
sdk: flutter
17-
firebase_database: ^4.4.0
18-
pedantic: ^1.9.0
17+
firebase_database: ^6.0.0
18+
pedantic: ^1.9.2
1919
mockito: ^4.1.3
20-
firebase_core_platform_interface: ^2.1.0
20+
firebase_core_platform_interface: ^3.0.1
2121
flutter_test:
2222
sdk: flutter

0 commit comments

Comments
 (0)