Skip to content

Commit 3427412

Browse files
committed
chore(release): publish packages
- flutter_chat_core@2.2.0 - flutter_chat_ui@2.2.0 - flyer_chat_image_message@2.1.3 - flyer_chat_text_message@2.1.3 - flyer_chat_system_message@2.1.3 - flyer_chat_file_message@2.1.3 - flyer_chat_text_stream_message@2.1.3
1 parent 3747201 commit 3427412

File tree

15 files changed

+50
-20
lines changed

15 files changed

+50
-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.1.2
40-
flutter_chat_ui: ^2.1.3
39+
flutter_chat_core: ^2.2.0
40+
flutter_chat_ui: ^2.2.0
4141
flutter_dotenv: ^5.2.1
4242
flutter_lorem: ^2.0.0
43-
flyer_chat_file_message: ^2.1.2
44-
flyer_chat_image_message: ^2.1.2
45-
flyer_chat_system_message: ^2.1.2
46-
flyer_chat_text_message: ^2.1.2
47-
flyer_chat_text_stream_message: ^2.1.2
43+
flyer_chat_file_message: ^2.1.3
44+
flyer_chat_image_message: ^2.1.3
45+
flyer_chat_system_message: ^2.1.3
46+
flyer_chat_text_message: ^2.1.3
47+
flyer_chat_text_stream_message: ^2.1.3
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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.0
2+
3+
- **FIX**: update operation not persisted in the list ([#778](https://github.com/flyerhq/flutter_chat_ui/issues/778)). ([37472015](https://github.com/flyerhq/flutter_chat_ui/commit/374720152912648643c03f761b0a27eafcf0a46f))
4+
- **FEAT**: Fix StreamOperation Async issues / create insertAll / fixInsert on reverted list ([#756](https://github.com/flyerhq/flutter_chat_ui/issues/756)). ([60395f9b](https://github.com/flyerhq/flutter_chat_ui/commit/60395f9ba97ac4b8000aea70c7040d55bb40b6aa))
5+
16
## 2.1.2
27

38
- **FIX**: add audio message type. ([8d2b705a](https://github.com/flyerhq/flutter_chat_ui/commit/8d2b705ad261275368d8c92d91ccdd53193d58ca))

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.1.2
2+
version: 2.2.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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.0
2+
3+
- **FIX**: update operation not persisted in the list ([#778](https://github.com/flyerhq/flutter_chat_ui/issues/778)). ([37472015](https://github.com/flyerhq/flutter_chat_ui/commit/374720152912648643c03f761b0a27eafcf0a46f))
4+
- **FEAT**: Fix StreamOperation Async issues / create insertAll / fixInsert on reverted list ([#756](https://github.com/flyerhq/flutter_chat_ui/issues/756)). ([60395f9b](https://github.com/flyerhq/flutter_chat_ui/commit/60395f9ba97ac4b8000aea70c7040d55bb40b6aa))
5+
16
## 2.1.3
27

38
- **FIX**: hide attachmentButton if no there is no onAttachmentTap provided ([#757](https://github.com/flyerhq/flutter_chat_ui/issues/757)). ([2eae2002](https://github.com/flyerhq/flutter_chat_ui/commit/2eae2002a9c846062902d7582724d0a932fae623))

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.1.3
2+
version: 2.2.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.1.2
18+
flutter_chat_core: ^2.2.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.3
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.2
26

37
- Update a dependency to the latest release.

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.1.2
2+
version: 2.1.3
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.1.2
15+
flutter_chat_core: ^2.2.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.3
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.2
26

37
- Update a dependency to the latest release.

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.1.2
2+
version: 2.1.3
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.1.2
18+
flutter_chat_core: ^2.2.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.3
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.2
26

37
- Update a dependency to the latest release.

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: 2.1.2
2+
version: 2.1.3
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: ^2.1.2
15+
flutter_chat_core: ^2.2.0
1616
provider: ^6.1.4
1717

1818
dev_dependencies:

packages/flyer_chat_text_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.3
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.2
26

37
- Update a dependency to the latest release.

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: 2.1.2
2+
version: 2.1.3
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: ^2.1.2
15+
flutter_chat_core: ^2.2.0
1616
gpt_markdown: ^1.0.16
1717
provider: ^6.1.4
1818

packages/flyer_chat_text_stream_message/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.3
2+
3+
- Update a dependency to the latest release.
4+
15
## 2.1.2
26

37
- Update a dependency to the latest release.

packages/flyer_chat_text_stream_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_stream_message
2-
version: 2.1.2
2+
version: 2.1.3
33
description: >
44
Text stream 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.1.2
15+
flutter_chat_core: ^2.2.0
1616
gpt_markdown: ^1.0.16
1717
provider: ^6.1.4
1818

0 commit comments

Comments
 (0)