Skip to content

Commit 437ab6a

Browse files
authored
docs: use secure https link in README.md (#243)
* docs: use secure `https` link in README.md * v3.0.1
1 parent 2fd02b2 commit 437ab6a

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

geocoding/CHANGELOG.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
## 3.0.1
2+
3+
- Updated links in README.md to use `https` protocol.
4+
15
## 3.0.0
26

3-
* **BREAKING CHANGES**:
7+
- **BREAKING CHANGES**:
48
- Locale is no longer part of the `locationFromAddress` and `placemarkFromAddress`, but should be set first by `setLocaleIdentifier`. This was already implemented on Android but is now working similarly on iOS.
59
- Updates documentation related to setting the locale.
610
- Added `setLocaleIdentifier` to the example app.
711
- Updates `geocoding_ios` version to 3.0.0.
8-
12+
913
## 2.2.2
1014

1115
- Updates documentation for isPresent().
@@ -23,16 +27,15 @@
2327

2428
## 2.2.0
2529

26-
- Exposes the `isPresent()` method which on Android returns `true` if the
27-
geocoding backend service are present on the device, otherwise returns `false`.
28-
On iOS this method always returns `true`.
30+
- Exposes the `isPresent()` method which on Android returns `true` if the
31+
geocoding backend service are present on the device, otherwise returns `false`.
32+
On iOS this method always returns `true`.
2933

3034
## 2.1.1
3135

3236
- Updates the example app, so the `example/lib/main.dart` contains clear example
33-
code on how to use the geocoding plugin. Mean reason for doing so is that the
34-
`example/lib/main.dart` is shown in the "Example" tab on pub.dev.
35-
37+
code on how to use the geocoding plugin. Mean reason for doing so is that the
38+
`example/lib/main.dart` is shown in the "Example" tab on pub.dev.
3639

3740
## 2.1.0
3841

geocoding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import 'package:geocoding/geocoding.dart';
5757
List<Placemark> placemarks = await placemarkFromCoordinates(52.2165157, 6.9437819);
5858
```
5959

60-
The setLocaleIdentifier with the `localeIdentifier` parameter can be used to enforce the results to be formatted (and translated) according to the specified locale. The `localeIdentifier` should be formatted using the syntax: [languageCode]_[countryCode]. Use the [ISO 639-1 or ISO 639-2](http://www.loc.gov/standards/iso639-2/php/English_list.php) standard for the language code and the 2 letter [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) standard for the country code. Some examples are:
60+
The setLocaleIdentifier with the `localeIdentifier` parameter can be used to enforce the results to be formatted (and translated) according to the specified locale. The `localeIdentifier` should be formatted using the syntax: [languageCode]_[countryCode]. Use the [ISO 639-1 or ISO 639-2](https://www.loc.gov/standards/iso639-2/php/English_list.php) standard for the language code and the 2 letter [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) standard for the country code. Some examples are:
6161

6262
Locale identifier | Description
6363
----------------- | -----------

geocoding/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: geocoding
22
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
3-
version: 3.0.0
3+
version: 3.0.1
44
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding
55
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues
66

0 commit comments

Comments
 (0)