Skip to content

Commit 50d1299

Browse files
chore(release): prepare for release (#3465)
1 parent aa10ce7 commit 50d1299

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

packages/connectivity_plus/connectivity_plus/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.1.3
2+
3+
- **FIX**(connectivity_plus): Resolve missing privacy manifest issue for iOS and MacOS ([#3458](https://github.com/fluttercommunity/plus_plugins/issues/3458)). ([dab92074](https://github.com/fluttercommunity/plus_plugins/commit/dab92074cbf7dece71a64854b4357eb5b62e2f4f))
4+
15
## 6.1.2
26

37
- **DOCS**(connectivity_plus): update package requirements ([#3409](https://github.com/fluttercommunity/plus_plugins/issues/3409)). ([cb8c5ead](https://github.com/fluttercommunity/plus_plugins/commit/cb8c5ead41bf8f1d5042a1109eac3e23305d3016))

packages/connectivity_plus/connectivity_plus/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
dependencies:
88
flutter:
99
sdk: flutter
10-
connectivity_plus: ^6.1.2
10+
connectivity_plus: ^6.1.3
1111

1212
dev_dependencies:
1313
flutter_driver:

packages/connectivity_plus/connectivity_plus/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: connectivity_plus
22
description: Flutter plugin for discovering the state of the network (WiFi & mobile/cellular) connectivity on Android and iOS.
3-
version: 6.1.2
3+
version: 6.1.3
44
homepage: https://github.com/fluttercommunity/plus_plugins
55
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/connectivity_plus/connectivity_plus
66
issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/connectivity_plus

packages/device_info_plus/device_info_plus/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 11.3.0
2+
3+
- **FEAT**(device_info_plus): Add User Device Name in Android (PR [#3437](https://github.com/fluttercommunity/plus_plugins/issues/3437)) ([#3456](https://github.com/fluttercommunity/plus_plugins/issues/3456)). ([8c38a31d](https://github.com/fluttercommunity/plus_plugins/commit/8c38a31d7c1073d7011ec3e3193f6b99b3851ef1))
4+
15
## 11.2.2
26

37
- **FIX**(device_info_plus): Replace throwing exception with returning default values on Windows ([#3445](https://github.com/fluttercommunity/plus_plugins/issues/3445)). ([084730f8](https://github.com/fluttercommunity/plus_plugins/commit/084730f82436b474b31b16f6dc2d7b90585e899f))

packages/device_info_plus/device_info_plus/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Demonstrates how to use the device_info_plus plugin.
44
dependencies:
55
flutter:
66
sdk: flutter
7-
device_info_plus: ^11.2.2
7+
device_info_plus: ^11.3.0
88

99
dev_dependencies:
1010
flutter_driver:

packages/device_info_plus/device_info_plus/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: device_info_plus
22
description: Flutter plugin providing detailed information about the device
33
(make, model, etc.), and Android or iOS version the app is running on.
4-
version: 11.2.2
4+
version: 11.3.0
55
homepage: https://github.com/fluttercommunity/plus_plugins
66
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/device_info_plus
77
issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/device_info_plus

packages/package_info_plus/package_info_plus/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 8.2.1
2+
3+
- **FIX**(package_info_plus): convert installTime to String instead of DateTime to avoid serialization issues ([#3464](https://github.com/fluttercommunity/plus_plugins/issues/3464)). ([aa10ce75](https://github.com/fluttercommunity/plus_plugins/commit/aa10ce758b6ee6895c7b4a05f16ffa08a434fa20))
4+
- **FIX**(package_info_plus): fix macOS compilation warning ([#3460](https://github.com/fluttercommunity/plus_plugins/issues/3460)). ([6eec56c4](https://github.com/fluttercommunity/plus_plugins/commit/6eec56c4a2a5f49894e60c3b9ea263c3096c01d5))
5+
16
## 8.2.0
27

38
- **FEAT**(package_info_plus): add install time ([#3434](https://github.com/fluttercommunity/plus_plugins/issues/3434)). ([0ea0402f](https://github.com/fluttercommunity/plus_plugins/commit/0ea0402f824104c36a806f32e88727801b40ba4c))

packages/package_info_plus/package_info_plus/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
http: ">=0.13.5 <2.0.0"
14-
package_info_plus: ^8.2.0
14+
package_info_plus: ^8.2.1
1515

1616
dev_dependencies:
1717
build_runner: ^2.3.3
18-
device_info_plus: ^11.2.2
18+
device_info_plus: ^11.3.0
1919
integration_test:
2020
sdk: flutter
2121
flutter_driver:

packages/package_info_plus/package_info_plus/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: package_info_plus
22
description: Flutter plugin for querying information about the application package, such as CFBundleVersion on iOS or versionCode on Android.
3-
version: 8.2.0
3+
version: 8.2.1
44
homepage: https://github.com/fluttercommunity/plus_plugins
55
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/package_info_plus/package_info_plus
66
issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/package_info_plus

0 commit comments

Comments
 (0)