Skip to content

Commit

Permalink
[release] release v0.7.0 of flutter plugin for mapbox maps
Browse files Browse the repository at this point in the history
  • Loading branch information
tobrun committed Jun 6, 2020
1 parent ae8afa1 commit f4ae628
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.7.0, June 6, 2020
* Introduction of mapbox_gl_platform_interface library
* Introduction of mapbox_gl_web library
* Integrate web support through mapbox-gl-js
* Add icon-allow-overlap configurations

## 0.0.6, May 31, 2020
* Update mapbox depdendency to 9.2.0 (android) and 5.6.0 (iOS)
* Long press handlers for both iOS as Android
Expand Down
1 change: 1 addition & 0 deletions example/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536M
android.enableR8=true
2 changes: 2 additions & 0 deletions mapbox_gl_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 0.7.0
- Initial version
6 changes: 6 additions & 0 deletions mapbox_gl_platform_interface/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
flutter-mapbox-gl copyright (c) 2018, Mapbox.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1 change: 1 addition & 0 deletions mapbox_gl_platform_interface/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Contains the web platform implementation for the [Flutter Mapbox GL plugin](https://github.com/tobrun/flutter-mapbox-gl).
3 changes: 2 additions & 1 deletion mapbox_gl_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: mapbox_gl_platform_interface
description: A common platform interface for the mapbox_gl plugin.
version: 0.1.0
version: 0.7.0
homepage: https://github.com/tobrun/flutter-mapbox-gl

dependencies:
flutter:
Expand Down
2 changes: 2 additions & 0 deletions mapbox_gl_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 0.7.0
- Initial version
6 changes: 6 additions & 0 deletions mapbox_gl_web/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
flutter-mapbox-gl copyright (c) 2018, Mapbox.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1 change: 1 addition & 0 deletions mapbox_gl_web/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Contains the web interfaces for the [Flutter Mapbox GL plugin](https://github.com/tobrun/flutter-mapbox-gl).
9 changes: 4 additions & 5 deletions mapbox_gl_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: mapbox_gl_web
description: Web platform implementation of mapbox_gl_web
version: 0.1.0
homepage: https://github.com/tobrun/flutter-mapbox-gl/mapbox_gl_web
description: Web platform implementation of mapbox_gl
version: 0.7.0
homepage: https://github.com/tobrun/flutter-mapbox-gl

flutter:
plugin:
Expand All @@ -16,8 +16,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
meta: ^1.1.7
mapbox_gl_platform_interface:
path: ../mapbox_gl_platform_interface
mapbox_gl_platform_interface: ^0.7.0
mapbox_gl_dart: ^0.1.5
image: ^2.1.12

Expand Down
10 changes: 4 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
name: mapbox_gl
description: A Flutter plugin for integrating Mapbox Maps SDK inside a Flutter widget in iOS and Android applications.
version: 0.0.6
description: A Flutter plugin for integrating Mapbox Maps inside a Flutter application on Android, iOS and web platfroms.
version: 0.7.0
homepage: https://github.com/tobrun/flutter-mapbox-gl

dependencies:
flutter:
sdk: flutter
mapbox_gl_platform_interface:
path: ./mapbox_gl_platform_interface
mapbox_gl_web:
path: ./mapbox_gl_web
mapbox_gl_platform_interface: ^0.7.0
mapbox_gl_web: ^0.7.0

flutter:
plugin:
Expand Down

0 comments on commit f4ae628

Please sign in to comment.