Skip to content

Commit

Permalink
chore: update versions in pubspecs (#545)
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Leibiger <[email protected]>
  • Loading branch information
smallTrogdor and kuhnroyal authored Feb 26, 2025
1 parent 7112952 commit e7adbf9
Show file tree
Hide file tree
Showing 136 changed files with 22 additions and 25 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/flutter_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -32,14 +32,14 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: maplibre-flutter-demo.apk
path: example/build/app/outputs/flutter-apk/app-release.apk
path: maplibre_gl_example/build/app/outputs/flutter-apk/app-release.apk

build-iOS:
name: Build iOS package
runs-on: macos-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
Expand All @@ -49,21 +49,21 @@ jobs:
- uses: bluefireteam/melos-action@v3
- uses: maxim-lobanov/setup-cocoapods@v1
with:
podfile-path: example/ios/Podfile.lock
podfile-path: maplibre_gl_example/ios/Podfile.lock
- name: Build iOS package
run: flutter build ios --simulator
- name: Upload Runner.app as artifact
uses: actions/upload-artifact@v4
with:
name: maplibre-flutter-demo.app
path: example/build/ios/iphonesimulator
path: maplibre_gl_example/build/ios/iphonesimulator

build-web:
name: "Build web"
runs-on: ubuntu-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/flutter_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
strategy:
fail-fast: false
matrix:
Expand All @@ -61,14 +61,14 @@ jobs:
if: ${{ matrix.sdk == '' }}
with:
name: maplibre-flutter-demo.apk
path: example/build/app/outputs/flutter-apk/app-release.apk
path: maplibre_gl_example/build/app/outputs/flutter-apk/app-release.apk

build-iOS:
name: Build iOS package
runs-on: macos-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
strategy:
fail-fast: false
matrix:
Expand All @@ -82,22 +82,22 @@ jobs:
- uses: bluefireteam/melos-action@v3
- uses: maxim-lobanov/setup-cocoapods@v1
with:
podfile-path: example/ios/Podfile.lock
podfile-path: maplibre_gl_example/ios/Podfile.lock
- name: Build iOS package
run: flutter build ios --simulator
- name: Upload Runner.app as artifact
if: ${{ matrix.sdk == '' }}
uses: actions/upload-artifact@v4
with:
name: maplibre-flutter-demo.app
path: example/build/ios/iphonesimulator
path: maplibre_gl_example/build/ios/iphonesimulator

build-web:
name: "Build web"
runs-on: ubuntu-latest
defaults:
run:
working-directory: example
working-directory: maplibre_gl_example
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion maplibre_gl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ in the `<head>` of your `web/index.html` file:

The following shows you how to add the map widget to your code and start
interacting with it. For more examples, head over to
the [example project](https://github.com/maplibre/flutter-maplibre-gl/tree/main/example).
the [example project](https://github.com/maplibre/flutter-maplibre-gl/tree/main/maplibre_gl_example).

```dart
Expand Down
6 changes: 3 additions & 3 deletions maplibre_gl/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.20.0
version: 0.21.0
repository: https://github.com/maplibre/flutter-maplibre-gl
issue_tracker: https://github.com/maplibre/flutter-maplibre-gl/issues

Expand All @@ -11,8 +11,8 @@ environment:
dependencies:
flutter:
sdk: flutter
maplibre_gl_platform_interface: ^0.20.0
maplibre_gl_web: ^0.20.0
maplibre_gl_platform_interface: ^0.21.0
maplibre_gl_web: ^0.21.0

dev_dependencies:
very_good_analysis: ^5.0.0
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions example/pubspec.yaml → maplibre_gl_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ environment:

dependencies:
collection: ^1.17.1
device_info_plus: ^9.0.2
device_info_plus: ^11.3.0
flutter:
sdk: flutter
http: ^1.1.0
location: ^5.0.3
maplibre_gl: ^0.20.0
maplibre_gl: ^0.21.0
path_provider: ^2.1.5

dev_dependencies:
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
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. This package is only intended to be used by the maplibre_gl package.
version: 0.20.0
version: 0.21.0
repository: https://github.com/maplibre/flutter-maplibre-gl
issue_tracker: https://github.com/maplibre/flutter-maplibre-gl/issues

Expand Down
4 changes: 2 additions & 2 deletions 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. This package is only intended to be used by the maplibre_gl package.
version: 0.20.0
version: 0.21.0
repository: https://github.com/maplibre/flutter-maplibre-gl
issue_tracker: https://github.com/maplibre/flutter-maplibre-gl/issues

Expand All @@ -22,7 +22,7 @@ dependencies:
sdk: flutter
image: ^4.0.17
js: ">=0.6.7 <0.8.0"
maplibre_gl_platform_interface: ^0.20.0
maplibre_gl_platform_interface: ^0.21.0
meta: ^1.3.0

dev_dependencies:
Expand Down
5 changes: 1 addition & 4 deletions melos.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: maplibre_gl_workspace

packages:
- example
- scripts
- maplibre_gl
- maplibre_gl_platform_interface
- maplibre_gl_web
- maplibre_gl*

0 comments on commit e7adbf9

Please sign in to comment.