Skip to content

Commit 4dd9ad0

Browse files
authored
🔖 8.7.0 (#477)
1 parent 8d5707d commit 4dd9ad0

File tree

6 files changed

+31
-23
lines changed

6 files changed

+31
-23
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ that can be found in the LICENSE file. -->
66

77
See the [Migration Guide](guides/migration_guide.md) for the details of breaking changes between versions.
88

9+
## 8.7.0
10+
11+
### Breaking changes
12+
13+
- Migrate to Flutter 3.13, and drop supports for previous Flutter versions.
14+
915
## 8.6.3
1016

1117
### Improvements

README-ZH.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,13 @@ Language: [English](README.md) | 中文
133133
该插件仅保证能与 **stable 渠道的 Flutter SDK** 配合使用。
134134
我们不会为其他渠道的 Flutter SDK 做实时支持。
135135

136-
| | 3.0.0 | 3.3.0 | 3.7.0 | 3.10.0 |
137-
|--------|:-----:|:-----:|:-----:|:------:|
138-
| 8.5.0+ |||||
139-
| 8.4.0+ |||||
140-
| 8.0.0+ |||||
141-
| 7.3.0+ |||||
136+
| | 3.0 | 3.3 | 3.7 | 3.10 | **3.13** |
137+
|--------|:---:|:---:|:---:|:----:|:--------:|
138+
| 8.7.0+ ||||||
139+
| 8.5.0+ ||||||
140+
| 8.4.0+ ||||||
141+
| 8.0.0+ ||||||
142+
| 7.3.0+ ||||||
142143

143144
如果在 `flutter pub get` 时遇到了 `resolve conflict` 失败问题,
144145
请使用 `dependency_overrides` 解决。

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,13 @@ before you have any questions.
140140
The package only guarantees to be working on **the stable version of Flutter**.
141141
We won't update it in real-time to align with other channels of Flutter.
142142

143-
| | 3.0.0 | 3.3.0 | 3.7.0 | 3.10.0 |
144-
|--------|:-----:|:-----:|:-----:|:------:|
145-
| 8.5.0+ |||||
146-
| 8.4.0+ |||||
147-
| 8.0.0+ |||||
148-
| 7.3.0+ |||||
143+
| | 3.0 | 3.3 | 3.7 | 3.10 | **3.13** |
144+
|--------|:---:|:---:|:---:|:----:|:--------:|
145+
| 8.7.0+ ||||||
146+
| 8.5.0+ ||||||
147+
| 8.4.0+ ||||||
148+
| 8.0.0+ ||||||
149+
| 7.3.0+ ||||||
149150

150151
If you got a `resolve conflict` error when running `flutter pub get`,
151152
please use `dependency_overrides` to fix it.

example/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: wechat_assets_picker_demo
22
description: The demo project for the wechat_assets_picker package.
3-
version: 8.6.3+43
3+
version: 8.7.0+44
44
publish_to: none
55

66
environment:
7-
sdk: '>=3.0.0'
8-
flutter: '>=3.10.0'
7+
sdk: '>=3.1.0'
8+
flutter: '>=3.13.0'
99

1010
dependencies:
1111
flutter:
@@ -15,9 +15,9 @@ dependencies:
1515

1616
wechat_assets_picker:
1717
path: ../
18-
wechat_camera_picker: ^3.6.0
18+
wechat_camera_picker: ^4.0.0
1919

20-
extended_image: ^8.0.0
20+
extended_image: ^8.1.0
2121
package_info_plus: ^4.0.0
2222
path: ^1.8.0
2323
path_provider: ^2.0.15

lib/src/widget/builder/video_page_builder.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class _VideoPageBuilderState extends State<VideoPageBuilder> {
195195
child: DecoratedBox(
196196
decoration: const BoxDecoration(
197197
boxShadow: <BoxShadow>[
198-
BoxShadow(color: Colors.black12)
198+
BoxShadow(color: Colors.black12),
199199
],
200200
shape: BoxShape.circle,
201201
),

pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wechat_assets_picker
2-
version: 8.6.3
2+
version: 8.7.0
33
description: |
44
An image picker (also with videos and audio)
55
for Flutter projects based on WeChat's UI,
@@ -9,15 +9,15 @@ repository: https://github.com/fluttercandies/flutter_wechat_assets_picker
99
issue_tracker: https://github.com/fluttercandies/flutter_wechat_assets_picker/issues
1010

1111
environment:
12-
sdk: ^3.0.0
13-
flutter: '>=3.10.0'
12+
sdk: ^3.1.0
13+
flutter: '>=3.13.0'
1414

1515
dependencies:
1616
flutter:
1717
sdk: flutter
1818

19-
extended_image: ^8.0.0
20-
photo_manager: ^2.6.0
19+
extended_image: ^8.1.0
20+
photo_manager: ^2.7.0
2121
provider: ^6.0.5
2222
video_player: ^2.7.0
2323

0 commit comments

Comments
 (0)