Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce intl constraint to match flutter_localizations 3.16.0 #448

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 17.0.0+1

- Reduce `intl` dependency constraint to match Flutter 3.16.0

# 17.0.0

## Breaking changes
Expand Down
4 changes: 3 additions & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ environment:
dependencies:
flutter:
sdk: flutter
intl: ^0.19.0
flutter_localizations:
sdk: flutter
intl: '>=0.18.1 <1.0.0'
reactive_forms:
path: ../
#reactive_forms_widgets: ^0.3.1
Expand Down
7 changes: 5 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reactive_forms
description: This is a model-driven approach to handling form inputs and validations, heavily inspired in Angular Reactive Forms.
version: 17.0.0
version: 17.0.0+1
homepage: "https://github.com/joanpablo/reactive_forms"

environment:
Expand All @@ -10,7 +10,10 @@ environment:
dependencies:
flutter:
sdk: flutter
intl: ">=0.19.0 <1.0.0"
# Keep flutter_localizations to ensure correct intl constraints
flutter_localizations:
sdk: flutter
intl: ">=0.18.1 <1.0.0"

dev_dependencies:
flutter_lints: ^3.0.2
Expand Down
Loading