diff --git a/.github/workflows/github-pages.yaml b/.github/workflows/github-pages.yaml index 3923da8..85043fa 100644 --- a/.github/workflows/github-pages.yaml +++ b/.github/workflows/github-pages.yaml @@ -1,12 +1,12 @@ name: GitHub Pages -concurrency: +concurrency: group: production cancel-in-progress: true on: push: - branches: [ main ] + branches: [main] jobs: build: @@ -42,4 +42,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 \ No newline at end of file + uses: actions/deploy-pages@v1 diff --git a/.github/workflows/publish_pubdev.yml b/.github/workflows/publish_pubdev.yml index 9b78ec3..b8bdbe3 100644 --- a/.github/workflows/publish_pubdev.yml +++ b/.github/workflows/publish_pubdev.yml @@ -1,15 +1,18 @@ name: Publish to Pub.dev -on: push +on: + push: + branches: [main] jobs: publishing: runs-on: ubuntu-latest steps: - - name: 'Checkout' + - name: "Checkout" uses: actions/checkout@v2 # required! - - - name: 'map' + + - name: "map" uses: k-paxian/dart-package-publisher@master with: credentialJson: ${{ secrets.CREDENTIAL_JSON }} + format: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aa641b..7a77626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.4.2] + +* Dart 3.0 ready. + ## [1.4.1] * Utility to get the visible boundary. diff --git a/analysis_options.yaml b/analysis_options.yaml index add0e3a..82a8129 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -19,13 +19,6 @@ analyzer: dead_code: error duplicate_import: error file_names: error - implicit_dynamic_function: ignore - implicit_dynamic_parameter: error - implicit_dynamic_list_literal: ignore - implicit_dynamic_map_literal: ignore - implicit_dynamic_method: ignore - implicit_dynamic_type: ignore - implicit_dynamic_variable: ignore invalid_assignment: error missing_return: error prefer_const_constructors: error