diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 1d05960..dc6b387 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -11,28 +11,6 @@ concurrency: cancel-in-progress: true jobs: - score-package: - name: "Score Package" - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - name: Run Dart Package Analyser - uses: axel-op/dart-package-analyzer@master - id: analysis - with: - githubToken: ${{ secrets.GITHUB_TOKEN }} - - name: Check Package Scores - env: - TOTAL: ${{ steps.analysis.outputs.total }} - TOTAL_MAX: ${{ steps.analysis.outputs.total_max }} - run: | - if (( $TOTAL < $TOTAL_MAX - 10 )) - then - echo Package score less than available score. Improve the score! - exit 1 - fi - analyse-code: name: "Analyse Code" runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index f4a9a2d..03080fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## [3.1.0] - 2025/02/02 + +* Support flutter_map v8 +* Fixed issue where externally created Dio client was closed internally - [#13](https://github.com/fleaflet/flutter_map_cancellable_tile_provider/pull/13) + ## [3.0.2] - 2024/09/12 * Minor dependency bumps diff --git a/pubspec.yaml b/pubspec.yaml index 39c9803..b3b2ba2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_map_cancellable_tile_provider description: Plugin for flutter_map that provides a `TileProvider` with the capability to cancel unnecessary HTTP tile requests -version: 3.0.2 +version: 3.1.0 homepage: https://github.com/fleaflet/flutter_map repository: https://github.com/fleaflet/flutter_map_cancellable_tile_provider @@ -23,12 +23,12 @@ platforms: windows: environment: - sdk: '>=3.0.0 <4.0.0' + sdk: ">=3.0.0 <4.0.0" flutter: ">=3.10.0" dependencies: dio: ^5.7.0 flutter: sdk: flutter - flutter_map: ^7.0.2 + flutter_map: ^8.0.0 meta: ^1.11.0