Skip to content

Commit 1176892

Browse files
committed
bump version to 1.1.0
Add `enableLogging` parameter to `FirebaseKit.init()` for controlling debug logging output.
1 parent 8ec58c1 commit 1176892

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.1.0 - 2026-03-02
2+
3+
### Added
4+
- `enableLogging` parameter on `FirebaseKit.init()` to control debug logging output (defaults to `true`)
5+
16
## 1.0.0
27

38
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A comprehensive Firebase integration library for Flutter applications. Provides
2727
4. Add Firebase Kit to your `pubspec.yaml`:
2828
```yaml
2929
dependencies:
30-
firebase_kit: ^1.0.0
30+
firebase_kit: ^1.1.0
3131
```
3232
3333
## Quick Start

lib/src/firebase_kit_base.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ class FirebaseKit extends Runnable {
101101
List<FirebaseKitService> services = const [],
102102
bool Function()? condition,
103103
String? name,
104+
bool enableLogging = true,
104105
}) async {
106+
FirebaseKitLogger.enabled = enableLogging;
105107
return FirebaseKit._(
106108
options: options,
107109
services: services,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: firebase_kit
22
description: Firebase integration kit for Flutter applications. Provides streamlined Firebase services including Analytics, Authentication, Crashlytics, Cloud Firestore, and Cloud Messaging.
3-
version: 1.0.0
3+
version: 1.1.0
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/firebase-kit
66
issue_tracker: https://github.com/nylo-core/firebase-kit/issues

0 commit comments

Comments
 (0)