Skip to content

Commit 557d033

Browse files
committed
Release version 2.2.0
1 parent a201e8f commit 557d033

File tree

12 files changed

+44
-89
lines changed

12 files changed

+44
-89
lines changed

update_available/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 2.2.0
2+
3+
- Update dependencies
4+
- Specially, the package `package_info_plus` version was preventing this package to be used with updated Flutter dependencies
5+
- Thanks to @otopba for the PR (#15)!
6+
- Update Android implementation to plugin v2
7+
- Use federated plugin structure for iOS (#7)
8+
- Add the parameter `iosAppStoreRegion` to `getAvailability`
9+
- As requested in #10, this parameter allows one to set which region to look for in the AppStore. The default region makes the search fail if your app is published in a different region
10+
- Thanks to @rkfcccccc for the PR!
11+
- Fix error that happened when using the package with other packages that used the Google API (#18)
12+
- Thanks to @otopba for identifying the issue and providing the PR!
13+
- Set the minimum Flutter SDK version to `>= 2.8.0`
14+
- The package didn't work in versions minor tha `2.8.0`, but the package was targeted to `>= 2.0.0`
15+
- Thanks to @kuhnroyal for identifying the issue and providing the PR!
16+
- Some improvements in CI/CD and development
17+
- Thanks to @kuhnroyal for helping with this!
18+
119
## 2.1.0
220

321
- Replace `package_info`, which is deprecated, with `package_info_plus`

update_available/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: update_available
22
description: Know if there's any update for your Flutter app, based on published versions.
3-
version: 2.2.0-dev.1
3+
version: 2.2.0
44
repository: https://github.com/mateusfccp/update_available/tree/master/update_available
55

66
environment:
@@ -10,9 +10,9 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
update_available_android: ^2.2.0-dev.1
14-
update_available_ios: ^2.2.0-dev.1
15-
update_available_platform_interface: ^2.2.0-dev.1
13+
update_available_android: ^2.2.0
14+
update_available_ios: ^2.2.0
15+
update_available_platform_interface: ^3.0.0
1616

1717
dev_dependencies:
1818
flutter_lints: ^1.0.4

update_available_android/.idea/libraries/Dart_SDK.xml

-19
This file was deleted.

update_available_android/.idea/modules.xml

-10
This file was deleted.

update_available_android/.idea/runConfigurations/example_lib_main_dart.xml

-6
This file was deleted.

update_available_android/.idea/workspace.xml

-45
This file was deleted.

update_available_android/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.2.0
2+
3+
- Update dependencies
4+
- Update to plugin v2
5+
- Fix error that happened when using the package with other packages that used the Google API (#18)
6+
- Thanks to @otopba for identifying the issue and providing the PR!
7+
18
# 2.0.0
29

310
- *Null-safety* bump to stable

update_available_android/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: update_available_android
22
description: Android platform implementation of update_available
3-
version: 2.2.0-dev.1
3+
version: 2.2.0
44
repository: https://github.com/mateusfccp/update_available/tree/master/update_available_android
55

66
environment:
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
update_available_platform_interface: ^2.2.0-dev.1
13+
update_available_platform_interface: ^3.0.0
1414

1515
dev_dependencies:
1616
flutter_lints: ^1.0.4

update_available_ios/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.0
2+
3+
- Update dependencies
4+
- Use federated plugin structure for iOS (#7)
5+
16
## 2.1.0
27

38
- Replace `package_info`, which is deprecated, with `package_info_plus`

update_available_ios/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: update_available_ios
22
description: iOS platform implementation of update_available
3-
version: 2.2.0-dev.1
3+
version: 2.2.0
44
repository: https://github.com/mateusfccp/update_available/tree/master/update_available_ios
55

66
environment:
@@ -14,7 +14,7 @@ dependencies:
1414
meta: ^1.7.0
1515
package_info_plus: ^3.0.1
1616
pub_semver: ^2.1.1
17-
update_available_platform_interface: ^2.2.0-dev.1
17+
update_available_platform_interface: ^3.0.0
1818

1919
dev_dependencies:
2020
flutter_test:

update_available_platform_interface/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.0.0
2+
3+
- Update dependencies
4+
- *Breaking change:* now, the method `getUpdateAvailability` has an optional named parameter `String? iosAppStoreRegion` (#11)
5+
16
## 2.0.0
27

38
- *Null-safety* bump to stable

update_available_platform_interface/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: update_available_platform_interface
22
description: A common platform interface for the update_available plugin.
3-
version: 2.2.0-dev.1
3+
version: 3.0.0
44
repository: https://github.com/mateusfccp/update_available/tree/master/update_available_platform_interface
55

66
environment:

0 commit comments

Comments
 (0)