Skip to content

Commit

Permalink
Prepare release 0.18.0 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
m0nac0 authored Nov 28, 2023
1 parent 6c88d54 commit 0bf3260
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 8 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.18.0
### Breaking Change:
Already since 0.17.0, developers do not need to adapt their Podfile for iOS apps anymore as it was previously described in the Readme. Developers who previously added these lines should remove them, since not removing these lines may cause a build failure on iOS. (This change actually already landed in 0.17.0, but it may not have been sufficiently clear that not removing these lines might break builds).

### Other Changes:

* new feature: set arbitrary layer properties by @m0nac0 in https://github.com/maplibre/flutter-maplibre-gl/pull/303
* Update release process by @m0nac0 in https://github.com/maplibre/flutter-maplibre-gl/pull/315
* Add workflows for automated publishing to pub.dev by @m0nac0 in https://github.com/maplibre/flutter-maplibre-gl/pull/328
* Fix example app pubspec by @m0nac0 in https://github.com/maplibre/flutter-maplibre-gl/pull/329
* Updated location plugin version for example app by @varunlohade in https://github.com/maplibre/flutter-maplibre-gl/pull/334
* Housekeeping: Improve docs and update outdated references to point to MapLibre by @m0nac0 in https://github.com/maplibre/flutter-maplibre-gl/pull/330


**Full Changelog**: https://github.com/maplibre/flutter-maplibre-gl/compare/0.17.0...0.18.0


## 0.17.0

**Repository transfer**: The project repository was transferred to the MapLibre GitHub organization. More information at https://github.com/maplibre/flutter-maplibre-gl/issues/221
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ Documentation is available on the docs branch in the doc/api folder and automati
Please visit [https://github.com/maplibre/maplibre-gl-js](https://github.com/maplibre/maplibre-gl-js) and [https://github.com/maplibre/maplibre-gl-native](https://github.com/maplibre/maplibre-gl-native) for more information about the Maplibre libraries.

### iOS
To use this plugin with iOS, you do not need to adapt your app's Podfile anymore! If you previously adapted the Podfile because of the instructions here, this should not be necessary anymore with the latest changes and you should be able to remove these lines from your Podfile:
To use this plugin with iOS, you **do not** need to adapt your app's Podfile anymore! If you previously adapted the Podfile because of the instructions here, this should not be necessary anymore with the latest changes and you should actually remove these lines from your Podfile to avoid build errors:
<details>
<summary>View obsolete code</summary>

```ruby
source 'https://cdn.cocoapods.org/'
Expand All @@ -53,7 +55,7 @@ source 'https://github.com/m0nac0/flutter-maplibre-podspecs.git'
pod 'MapLibre'
pod 'MapLibreAnnotationExtension'
```

</details>
You can also check our example app's Podfile: https://github.com/maplibre/flutter-maplibre-gl/blob/main/example/ios/Podfile

### Web
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -207,21 +207,21 @@ packages:
path: ".."
relative: true
source: path
version: "0.17.0"
version: "0.18.0"
maplibre_gl_platform_interface:
dependency: "direct main"
description:
path: "../maplibre_gl_platform_interface"
relative: true
source: path
version: "0.17.0"
version: "0.18.0"
maplibre_gl_web:
dependency: "direct overridden"
description:
path: "../maplibre_gl_web"
relative: true
source: path
version: "0.17.0"
version: "0.18.0"
matcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion maplibre_gl_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: maplibre_gl_platform_interface
description: A common platform interface for the maplibre_gl plugin.
version: 0.17.0
version: 0.18.0
homepage: https://github.com/maplibre/flutter-maplibre-gl

dependencies:
Expand Down
2 changes: 1 addition & 1 deletion maplibre_gl_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: maplibre_gl_web
description: Web platform implementation of maplibre_gl
version: 0.17.0
version: 0.18.0
homepage: https://github.com/maplibre/flutter-maplibre-gl

flutter:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: maplibre_gl
description: A Flutter plugin for integrating Maplibre Maps inside a Flutter application on Android, iOS and web platforms.
version: 0.17.0
version: 0.18.0
homepage: https://github.com/maplibre/flutter-maplibre-gl

dependencies:
Expand Down

0 comments on commit 0bf3260

Please sign in to comment.