Skip to content

Commit 313a3f1

Browse files
committed
1 parent 113141b commit 313a3f1

File tree

17 files changed

+56
-24
lines changed

17 files changed

+56
-24
lines changed

examples/flyer_chat/pubspec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ environment:
3030
dependencies:
3131
# The following adds the Cupertino Icons font to your application.
3232
# Use with the CupertinoIcons class for iOS style icons.
33-
cross_cache: ^1.0.0
33+
cross_cache: ^1.0.2
3434
cupertino_icons: ^1.0.8
3535
dio: ^5.8.0+1
3636
file_picker: ^10.0.0
3737
flutter:
3838
sdk: flutter
39-
flutter_chat_core: ^2.0.0
40-
flutter_chat_ui: ^2.0.0
39+
flutter_chat_core: ^2.0.2
40+
flutter_chat_ui: ^2.0.2
4141
flutter_dotenv: ^5.2.1
4242
flutter_lorem: ^2.0.0
43-
flyer_chat_file_message: ^2.0.0
44-
flyer_chat_image_message: ^2.0.0
45-
flyer_chat_system_message: ^2.0.0
46-
flyer_chat_text_message: ^2.0.3
47-
flyer_chat_text_stream_message: ^2.0.3
43+
flyer_chat_file_message: ^2.0.2
44+
flyer_chat_image_message: ^2.0.2
45+
flyer_chat_system_message: ^2.0.2
46+
flyer_chat_text_message: ^2.0.4
47+
flyer_chat_text_stream_message: ^2.0.4
4848
google_generative_ai: ^0.4.6
4949
hive: ^4.0.0-dev.2
5050
http: ^1.3.0

packages/cross_cache/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.2
2+
3+
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))
4+
15
## 1.0.1
26

37
- **FIX**: document public APIs.

packages/cross_cache/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cross_cache
2-
version: 1.0.1
2+
version: 1.0.2
33
description: >
44
Cross-platform cache manager for Flutter using IndexedDB for web, file system
55
for mobile and desktop, and Dio for network requests. #cache #indexeddb #dio

packages/flutter_chat_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
3+
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))
4+
15
## 2.0.1
26

37
- **FIX**: document public APIs.

packages/flutter_chat_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_chat_core
2-
version: 2.0.1
2+
version: 2.0.2
33
description: >
44
Core package for Flutter chat apps, complementing flutter_chat_ui.
55
Contains models and core functionality. #chat #ui

packages/flutter_chat_ui/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
3+
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))
4+
15
## 2.0.1
26

37
- **FIX**: document public APIs.

packages/flutter_chat_ui/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_chat_ui
2-
version: 2.0.1
2+
version: 2.0.2
33
description: >
44
Free and open-source chat SDK. Build fast, real-time apps and generative
55
AI agents with a high-performance, customizable, cross-platform UI.
@@ -11,11 +11,11 @@ environment:
1111
flutter: ">=3.29.0"
1212

1313
dependencies:
14-
cross_cache: ^1.0.1
14+
cross_cache: ^1.0.2
1515
diffutil_dart: ^4.0.1
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^2.0.1
18+
flutter_chat_core: ^2.0.2
1919
provider: ^6.1.4
2020
scrollview_observer: ^1.26.0
2121

packages/flyer_chat_file_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
3+
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))
4+
15
## 2.0.1
26

37
- **FIX**: document public APIs.

packages/flyer_chat_file_message/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_file_message
2-
version: 2.0.1
2+
version: 2.0.2
33
description: >
44
File message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
flutter:
1414
sdk: flutter
15-
flutter_chat_core: ^2.0.1
15+
flutter_chat_core: ^2.0.2
1616
intl: '>=0.19.0 <1.0.0'
1717
provider: ^6.1.4
1818

packages/flyer_chat_image_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
3+
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))
4+
15
## 2.0.1
26

37
- **FIX**: document public APIs.

0 commit comments

Comments
 (0)