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

Release 3.2.0 -> master #50

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [3.2.0] - 06.09.2024

- update minimum supported SDK version to Dart 3.5.
- fix error message typo

## [3.1.0] - 26.05.2022

- better support for nullable fields
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: environment_config_example
version: 0.0.1

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=3.5.0 <4.0.0"

dependencies:
environment_config:
Expand Down
2 changes: 1 addition & 1 deletion lib/argument_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ArgumentParser {

params.keys.forEach((key) {
if (params[key] != null && params[key] is! Map) {
throw MalformedConfigError('Mailformed config');
throw MalformedConfigError('Malformed config');
}

final Map<dynamic, dynamic> value = params[key] ?? {};
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: environment_config
description: Environment specific config generator. Allows to specify env configuration during CI/CD build. Primarily created to simplify Flutter build configuration
version: 3.1.0
version: 3.2.0
homepage: https://github.com/TatsuUkraine/dart_environment_config
repository: https://github.com/TatsuUkraine/dart_environment_config
issue_tracker: https://github.com/TatsuUkraine/dart_environment_config/issues

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: '>=3.5.0 <4.0.0'
executables:
environment-config-generate: generate

Expand Down