Skip to content

Commit 04ef1c1

Browse files
committed
Prepare next release
1 parent b6a3240 commit 04ef1c1

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0
2+
3+
* Add null-safety support (thank you to [orevial](https://github.com/orevial)!)
4+
15
## 1.2.2+2
26

37
* Fix web support (thank you to [ATeal](https://github.com/ATeal)!)

example/ios/Flutter/flutter_export_environment.sh

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
#!/bin/sh
22
# This is a generated file; do not edit or check into version control.
3-
export "FLUTTER_ROOT=/home/julien/.flutter_sdk"
4-
export "FLUTTER_APPLICATION_PATH=/home/julien/Workspace/maps_launcher/example"
5-
export "FLUTTER_TARGET=lib/main.dart"
3+
export "FLUTTER_ROOT=C:\Users\julie\flutter"
4+
export "FLUTTER_APPLICATION_PATH=C:\Users\julie\Documents\Workspace\flutter-maps-launcher\example"
5+
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6+
export "FLUTTER_TARGET=lib\main.dart"
67
export "FLUTTER_BUILD_DIR=build"
7-
export "SYMROOT=${SOURCE_ROOT}/../build/ios"
8-
export "OTHER_LDFLAGS=$(inherited) -framework Flutter"
9-
export "FLUTTER_FRAMEWORK_DIR=/home/julien/.flutter_sdk/bin/cache/artifacts/engine/ios"
8+
export "SYMROOT=${SOURCE_ROOT}/../build\ios"
109
export "FLUTTER_BUILD_NAME=1.0.0"
1110
export "FLUTTER_BUILD_NUMBER=1"
1211
export "DART_OBFUSCATION=false"

example/pubspec.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ packages:
7878
path: ".."
7979
relative: true
8080
source: path
81-
version: "1.2.2+2"
81+
version: "2.0.0"
8282
matcher:
8383
dependency: transitive
8484
description:
@@ -118,7 +118,7 @@ packages:
118118
name: source_span
119119
url: "https://pub.dartlang.org"
120120
source: hosted
121-
version: "1.8.0"
121+
version: "1.8.1"
122122
stack_trace:
123123
dependency: transitive
124124
description:

lib/maps_launcher.dart

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import 'package:url_launcher/url_launcher.dart';
88
class MapsLauncher {
99
/// Returns a URL that can be launched on the current platform
1010
/// to open a maps application showing the result of a search query.
11-
/// Returns `null` if the platform is not supported.
1211
static String createQueryUrl(String query) {
1312
var uri;
1413

@@ -29,7 +28,6 @@ class MapsLauncher {
2928

3029
/// Returns a URL that can be launched on the current platform
3130
/// to open a maps application showing coordinates ([latitude] and [longitude]).
32-
/// Returns `null` if the platform is not supported.
3331
static String createCoordinatesUrl(double latitude, double longitude,
3432
[String? label]) {
3533
var uri;

pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ packages:
111111
name: source_span
112112
url: "https://pub.dartlang.org"
113113
source: hosted
114-
version: "1.8.0"
114+
version: "1.8.1"
115115
stack_trace:
116116
dependency: transitive
117117
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: maps_launcher
22
description: Simple Flutter plugin to open the maps application (or browser) on all platforms.
3-
version: 1.2.2+2
3+
version: 2.0.0
44
homepage: https://github.com/pikaju/flutter-maps-launcher
55

66
environment:

0 commit comments

Comments
 (0)