Skip to content

Commit

Permalink
Merge pull request #15 from MadBrains/2.3.0
Browse files Browse the repository at this point in the history
2.3.0
  • Loading branch information
KolasikOmetov authored Feb 15, 2024
2 parents b9ad4a5 + aa6b737 commit e11c5fc
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [2.3.0]
* Update min Dart SDK to 3.2

## [2.2.1]
* Dependency update
* Fix get first on empty list error in geocode_response
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FVM_DART = $(FVM) dart


init:
$(FVM) use 3.10.2 --force; $(FVM_DART) pub global activate pana;
$(FVM) use 3.16.9 --force; $(FVM_DART) pub global activate pana;

version:
$(FVM_FLUTTER) --version; $(FVM_DART) --version;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The geocoder helps to determine the coordinates of an object by its address or,
Add this to your package's pubspec.yaml file:
```yaml
dependencies:
yandex_geocoder: 2.2.0
yandex_geocoder: 2.3.0
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Для подключения добавьте в файл Pubspec зависимости:
```yaml
dependencies:
yandex_geocoder: 2.2.0
yandex_geocoder: 2.3.0
```
## Использование
Expand Down
3 changes: 1 addition & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,11 @@ linter:
- file_names
- hash_and_equals
- implementation_imports
- iterable_contains_unrelated_type
- collection_methods_unrelated_type
- join_return_with_assignment
- leading_newlines_in_multiline_strings
- library_names
- library_prefixes
- list_remove_unrelated_type
- missing_whitespace_between_adjacent_strings
- no_adjacent_strings_in_list
- no_duplicate_case_values
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=3.0.0 <4.0.0"
sdk: ">=3.2.0 <4.0.0"

dependencies:
flutter:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/request/geocode_request.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ part of 'request.dart';
/// Модель запроса на геокодирования
/// {@endtemplate}
abstract class GeocodeRequest with Comparer {
/// {@template geocode_request}
/// {@macro geocode_request}
const GeocodeRequest({
this.apiKey,
this.kind,
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: yandex_geocoder
description: API to translate geographic coordinates into an address and vice versa
version: 2.2.1
version: 2.3.0
repository: https://github.com/MadBrains/Yandex-Geocoder-Flutter
issue_tracker: https://github.com/MadBrains/Yandex-Geocoder-Flutter/issues
homepage: https://madbrains.ru/

environment:
sdk: ">=3.0.0 <4.0.0"
sdk: ">=3.2.0 <4.0.0"

dependencies:
collection: ^1.18.0
Expand Down

0 comments on commit e11c5fc

Please sign in to comment.