Skip to content

Commit 68302ed

Browse files
committed
chore: 2.0.0-dev.8 release
1 parent 5bd3203 commit 68302ed

File tree

23 files changed

+79
-23
lines changed

23 files changed

+79
-23
lines changed

examples/flyer_chat/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ 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: ^0.0.8
33+
cross_cache: ^0.0.9
3434
cupertino_icons: ^1.0.8
3535
dio: ^5.8.0+1
3636
flutter:
3737
sdk: flutter
38-
flutter_chat_core: ^0.0.8
39-
flutter_chat_ui: ^2.0.0-dev.7
38+
flutter_chat_core: ^0.0.9
39+
flutter_chat_ui: ^2.0.0-dev.8
4040
flutter_dotenv: ^5.2.1
4141
flutter_lorem: ^2.0.0
42-
flyer_chat_image_message: ^0.0.8
43-
flyer_chat_system_message: ^0.0.8
44-
flyer_chat_text_message: ^0.0.8
42+
flyer_chat_image_message: ^0.0.9
43+
flyer_chat_system_message: ^0.0.9
44+
flyer_chat_text_message: ^0.0.9
4545
google_generative_ai: ^0.4.6
4646
hive: ^4.0.0-dev.2
4747
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+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

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: 0.0.8
2+
version: 0.0.9
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+
## 0.0.9
2+
3+
- Added system message for displaying system notifications and events in chat
4+
15
## 0.0.8
26

37
- Add `UserCache` class to store resolved users for synchronous access, preventing flickering in recycled widgets by caching user data with LRU eviction strategy

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: 0.0.8
2+
version: 0.0.9
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.0.0-dev.8
2+
3+
**⚠️ Breaking Changes ⚠️**
4+
5+
- Package requires `intl` package for date/time formatting
6+
7+
**⚠️ New features ⚠️**
8+
9+
- Added support for long press actions on messages with customizable callback
10+
- Added system message for displaying system notifications and events in chat
11+
- Added examples demonstrating both long press handling and system messages
12+
- Added message status indicators (delivered, error, seen, sending, sent)
13+
- Added message timestamps with customizable format, position
14+
115
## 2.0.0-dev.7
216

317
**⚠️ Breaking Changes ⚠️**

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.0-dev.7
2+
version: 2.0.0-dev.8
33
description: >
44
Community-driven, animated chat UI for Flutter with top-tier performance and
55
customization for chat apps and generative AI agents. #firebase #gemini #chatgpt
@@ -11,11 +11,11 @@ environment:
1111
flutter: ">=3.29.0"
1212

1313
dependencies:
14-
cross_cache: ^0.0.8
14+
cross_cache: ^0.0.9
1515
diffutil_dart: ^4.0.1
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^0.0.8
18+
flutter_chat_core: ^0.0.9
1919
provider: ^6.1.2
2020
scrollview_observer: ^1.25.1
2121

packages/flyer_chat_audio_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_audio_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_audio_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Audio message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_custom_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_custom_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_custom_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Custom message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

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+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_file_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_file_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
File message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_image_message/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.9
2+
3+
- Added message status indicators (delivered, error, seen, sending, sent)
4+
- Added message timestamps with customizable format, position
5+
16
## 0.0.8
27

38
- Version bump to match other packages

packages/flyer_chat_image_message/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_image_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Image message package for Flutter chat apps, complementing flutter_chat_ui.
55
Supports caching, ThumbHash and BlurHash. #chat #ui
@@ -12,10 +12,10 @@ environment:
1212

1313
dependencies:
1414
blurhash_dart: ^1.2.1
15-
cross_cache: ^0.0.8
15+
cross_cache: ^0.0.9
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^0.0.8
18+
flutter_chat_core: ^0.0.9
1919
image: ^4.5.2
2020
provider: ^6.1.2
2121
thumbhash: ^0.1.0+1

packages/flyer_chat_location_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_location_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_location_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Location message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

packages/flyer_chat_system_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9
2+
3+
- Added system message for displaying system notifications and events in chat
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_system_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_system_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
System 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: ^0.0.8
15+
flutter_chat_core: ^0.0.9
1616
provider: ^6.1.2
1717

1818
dev_dependencies:

packages/flyer_chat_text_message/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.9
2+
3+
- Added message status indicators (delivered, error, seen, sending, sent)
4+
- Added message timestamps with customizable format, position
5+
16
## 0.0.8
27

38
- Changed `flutter_markdown` to `gpt_markdown`

packages/flyer_chat_text_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_text_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Text 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: ^0.0.8
15+
flutter_chat_core: ^0.0.9
1616
gpt_markdown: ^1.0.12
1717
provider: ^6.1.2
1818

packages/flyer_chat_video_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.9
2+
3+
- Version bump to match other packages
4+
15
## 0.0.8
26

37
- Version bump to match other packages

packages/flyer_chat_video_message/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flyer_chat_video_message
2-
version: 0.0.8
2+
version: 0.0.9
33
description: >
44
Video message package for Flutter chat apps, complementing flutter_chat_ui. #chat #ui
55
homepage: https://flyer.chat

0 commit comments

Comments
 (0)