Skip to content

Commit

Permalink
Prepare 3.2.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Mateus Felipe C. C. Pinto <[email protected]>
  • Loading branch information
mateusfccp committed Sep 30, 2024
1 parent b1c960b commit 85315fd
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 18 deletions.
7 changes: 7 additions & 0 deletions update_available/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.2.0

- Allow bigger Kotlin/Gradle versions (fixes #43)
- Bust iTunes cache when fetching the published plugin version (fixes #45)
- Thanks to @millerf for the contribution!
- Upgrade dependencies

## 3.1.0

- Support for Android namespace
Expand Down
4 changes: 2 additions & 2 deletions update_available/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: update_available_example
description: Example for update_available package.
version: 2.0.0
version: 2.1.0
repository: https://github.com/mateusfccp/update_available/tree/master/update_available
publish_to: none

Expand All @@ -15,7 +15,7 @@ dependencies:
path: ..

dev_dependencies:
flutter_lints: ^2.0.2
flutter_lints: ^5.0.0

dependency_overrides:
update_available_android:
Expand Down
10 changes: 5 additions & 5 deletions update_available/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: update_available
description: Know if there's any update for your Flutter app, based on published versions.
version: 3.1.0
version: 3.2.0
repository: https://github.com/mateusfccp/update_available/tree/master/update_available

environment:
Expand All @@ -10,12 +10,12 @@ environment:
dependencies:
flutter:
sdk: flutter
update_available_android: ^3.1.0
update_available_ios: ^3.0.2
update_available_platform_interface: ^4.0.1
update_available_android: ^3.2.0
update_available_ios: ^3.1.0
update_available_platform_interface: ^4.1.0

dev_dependencies:
flutter_lints: ^3.0.2
flutter_lints: ^5.0.0

flutter:
plugin:
Expand Down
5 changes: 5 additions & 0 deletions update_available_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.2.0

- Allow bigger Kotlin/Gradle versions
- Upgrade dependencies

## 3.1.0

- Add support for Android namespace
Expand Down
6 changes: 3 additions & 3 deletions update_available_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: update_available_android
description: Android platform implementation of update_available
version: 3.1.0
version: 3.2.0
repository: https://github.com/mateusfccp/update_available/tree/master/update_available_android

environment:
Expand All @@ -10,10 +10,10 @@ environment:
dependencies:
flutter:
sdk: flutter
update_available_platform_interface: ^4.0.1
update_available_platform_interface: ^4.1.0

dev_dependencies:
flutter_lints: ^3.0.2
flutter_lints: ^5.0.0

flutter:
plugin:
Expand Down
5 changes: 3 additions & 2 deletions update_available_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Unreleased
## 3.1.0

- Bust iTunes cache when fetching the published plugin version (see #45)
- Bust iTunes cache when fetching the published plugin version (fixes #45)
- Upgrade dependencies

## 3.0.2

Expand Down
6 changes: 3 additions & 3 deletions update_available_ios/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ dependencies:
meta: ^1.9.1
package_info_plus: ">=4.0.2 <9.0.0"
pub_semver: ^2.1.4
update_available_platform_interface: ^4.0.1
update_available_platform_interface: ^4.1.0

dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.2
test: ^1.24.0
flutter_lints: ^5.0.0
test: ^1.25.7

flutter:
plugin:
Expand Down
5 changes: 5 additions & 0 deletions update_available_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 4.1.0

- Provide error information on `UnkownAvailability` object for when the method channel returns a `PlatformException`
- Upgrade dependencies

## 4.0.1

- Upgraded `flutter_lints` to `^3.0.1`
Expand Down
6 changes: 3 additions & 3 deletions update_available_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: update_available_platform_interface
description: A common platform interface for the update_available plugin.
version: 4.0.1
version: 4.1.0
repository: https://github.com/mateusfccp/update_available/tree/master/update_available_platform_interface

environment:
sdk: ">=3.0.0 <4.0.0"

dependencies:
meta: ^1.9.1
plugin_platform_interface: ^2.1.4
plugin_platform_interface: ^2.1.8

dev_dependencies:
flutter_lints: ^3.0.2
flutter_lints: ^5.0.0

0 comments on commit 85315fd

Please sign in to comment.