Skip to content

Commit e7b5203

Browse files
committed
1 parent dc1bf57 commit e7b5203

File tree

15 files changed

+57
-20
lines changed

15 files changed

+57
-20
lines changed

examples/flyer_chat/pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ dependencies:
3636
file_picker: ^10.0.0
3737
flutter:
3838
sdk: flutter
39-
flutter_chat_core: ^2.0.2
40-
flutter_chat_ui: ^2.0.2
39+
flutter_chat_core: ^2.1.0
40+
flutter_chat_ui: ^2.1.0
4141
flutter_dotenv: ^5.2.1
4242
flutter_lorem: ^2.0.0
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
43+
flyer_chat_file_message: ^2.1.0
44+
flyer_chat_image_message: ^2.1.0
45+
flyer_chat_system_message: ^2.1.0
46+
flyer_chat_text_message: ^2.1.0
47+
flyer_chat_text_stream_message: ^2.1.0
4848
google_generative_ai: ^0.4.6
4949
hive: ^4.0.0-dev.2
5050
http: ^1.3.0

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.1.0
2+
3+
- **FEAT**: rename chat controller methods. ([dc1bf57d](https://github.com/flyerhq/flutter_chat_ui/commit/dc1bf57d9b5f9655805589fdda5581759b9cc1a9))
4+
15
## 2.0.2
26

37
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))

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.2
2+
version: 2.1.0
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 2.1.0
2+
3+
**⚠️ Breaking Changes ⚠️**
4+
5+
Chat controller methods have been renamed to avoid name conflicts with Riverpod.
6+
7+
- `insert` -> `insertMessage`
8+
- `update` -> `updateMessage`
9+
- `remove` -> `removeMessage`
10+
- `set` -> `setMessages`
11+
12+
- **FEAT**: rename chat controller methods. ([dc1bf57d](https://github.com/flyerhq/flutter_chat_ui/commit/dc1bf57d9b5f9655805589fdda5581759b9cc1a9))
13+
114
## 2.0.2
215

316
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))

packages/flutter_chat_ui/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_chat_ui
2-
version: 2.0.2
2+
version: 2.1.0
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.
@@ -15,7 +15,7 @@ dependencies:
1515
diffutil_dart: ^4.0.1
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^2.0.2
18+
flutter_chat_core: ^2.1.0
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.1.0
2+
3+
- **FEAT**: rename chat controller methods. ([dc1bf57d](https://github.com/flyerhq/flutter_chat_ui/commit/dc1bf57d9b5f9655805589fdda5581759b9cc1a9))
4+
15
## 2.0.2
26

37
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))

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.2
2+
version: 2.1.0
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.2
15+
flutter_chat_core: ^2.1.0
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.1.0
2+
3+
- **FEAT**: rename chat controller methods. ([dc1bf57d](https://github.com/flyerhq/flutter_chat_ui/commit/dc1bf57d9b5f9655805589fdda5581759b9cc1a9))
4+
15
## 2.0.2
26

37
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))

packages/flyer_chat_image_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_image_message
2-
version: 2.0.2
2+
version: 2.1.0
33
description: >
44
Image message package for Flutter chat apps, complementing flutter_chat_ui.
55
Supports caching, ThumbHash and BlurHash. #chat #ui
@@ -15,7 +15,7 @@ dependencies:
1515
cross_cache: ^1.0.2
1616
flutter:
1717
sdk: flutter
18-
flutter_chat_core: ^2.0.2
18+
flutter_chat_core: ^2.1.0
1919
image: ^4.5.4
2020
provider: ^6.1.4
2121
thumbhash: ^0.1.0+1

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+
## 2.1.0
2+
3+
- **FEAT**: rename chat controller methods. ([dc1bf57d](https://github.com/flyerhq/flutter_chat_ui/commit/dc1bf57d9b5f9655805589fdda5581759b9cc1a9))
4+
15
## 2.0.2
26

37
- **FIX**: improve documentation and add example. ([113141b3](https://github.com/flyerhq/flutter_chat_ui/commit/113141b31de52a166eea54625f4cdd5b80bb897a))

0 commit comments

Comments
 (0)