Skip to content

Commit 665c65e

Browse files
authored
[various] align Flutter and Dart SDK constraints (#1927)
* align Flutter and Dart SDK constraints * update PR template * update wording to be more generic on number of packagwa
1 parent 4ed8b40 commit 665c65e

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
As this repository hosts two packages, please ensure the PR title starts with the name of the package that it relates to using square brackets (e.g. [flutter_local_notifications]). The contribution guidelines can be found at https://github.com/MaikuB/flutter_local_notifications/blob/master/CONTRIBUTING.md. Please review this as it contains details on what to follow when submitting a PR.
1+
As this repository hosts multiple packages, please ensure the PR title starts with the name of the package that it relates to using square brackets (e.g. [flutter_local_notifications]). Should the PR more than one package than please prefix the title of the PR with [various] The contribution guidelines can be found at https://github.com/MaikuB/flutter_local_notifications/blob/master/CONTRIBUTING.md. Please review this as it contains details on what to follow when submitting a PR.

flutter_local_notifications/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [14.0.0-dev.3]
2+
3+
* Align Dart SDK constraint with minimum Flutter version (i.e. 3.0)
4+
15
# [14.0.0-dev.2]
26

37
* **Breaking change** the `id` property of the `ActiveNotification` class is now nullable to help indicate that the notification may not have been created by the plugin e.g. it was from Firebase Cloud Messaging. Thanks to the PR from [frankvollebregt](https://github.com/frankvollebregt)

flutter_local_notifications/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_local_notifications
22
description: A cross platform plugin for displaying and scheduling local
33
notifications for Flutter applications with the ability to customise for each
44
platform.
5-
version: 14.0.0-dev.2
5+
version: 14.0.0-dev.3
66
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
77
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues
88

@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
flutter_local_notifications_linux: ^4.0.0-dev.1
14-
flutter_local_notifications_platform_interface: ^7.0.0-dev.1
14+
flutter_local_notifications_platform_interface: ^7.0.0-dev.2
1515
timezone: ^0.9.0
1616

1717
dev_dependencies:
@@ -36,5 +36,5 @@ flutter:
3636
default_package: flutter_local_notifications_linux
3737

3838
environment:
39-
sdk: ">=2.15.0 <3.0.0"
39+
sdk: ">=2.17.0 <3.0.0"
4040
flutter: ">=3.0.0"

flutter_local_notifications_platform_interface/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [7.0.0-dev.2]
2+
3+
** Updated minimum Flutter SDK constraint to 3.0 and minimum Dart SDK constraint to 2.17 to align with versions used by actual plugin implementation
4+
15
## [7.0.0-dev.1]
26

37
* **Breaking change** the `id` property of the `ActiveNotification` class is now nullable to help indicate that the notification may not have been created by the plugin e.g. it was from Firebase Cloud Messaging. Thanks to the PR from [frankvollebregt](https://github.com/frankvollebregt)

flutter_local_notifications_platform_interface/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: flutter_local_notifications_platform_interface
22
description: A common platform interface for the flutter_local_notifications plugin.
3-
version: 7.0.0-dev.1
3+
version: 7.0.0-dev.2
44
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications_platform_interface
55

66
environment:
7-
sdk: ">=2.12.0 <3.0.0"
8-
flutter: ">=2.2.0"
7+
sdk: ">=2.17.0 <3.0.0"
8+
flutter: ">=3.0.0"
99

1010
dependencies:
1111
flutter:

0 commit comments

Comments
 (0)