From b433d3cf052cea18a93fef0e47ca3d7f34008123 Mon Sep 17 00:00:00 2001 From: "artem.abramov" Date: Wed, 5 Apr 2023 16:37:57 +0400 Subject: [PATCH] Release 3.2.1 --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ CHANGELOG.md | 4 ++++ example/pubspec.lock | 4 ++-- pubspec.lock | 34 +++++++++++++++++++++------------- pubspec.yaml | 4 ++-- 5 files changed, 57 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..29c4c24 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,28 @@ +name: Test + +on: + pull_request: + branches: + - master + +jobs: + publish: + permissions: + id-token: write # This is required for authentication using OIDC + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: dart-lang/setup-dart@v1 + + - name: Setup Flutter SDK + uses: flutter-actions/setup-flutter@v2 + with: + channel: stable + version: 3.7.0 + + - name: Analyze + run: flutter analyze + + - name: Format + run: dart format -o none . --set-exit-if-changed diff --git a/CHANGELOG.md b/CHANGELOG.md index ddf0c0c..6685322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +## [3.2.1] +- Added test workflow + ## [3.2.0] - Added the `dash_kit_lints` - Fixed lint issues + ## [3.1.0] - Incremented the Flutter SDK version to 3.7.0 diff --git a/example/pubspec.lock b/example/pubspec.lock index 01e4887..483c959 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -55,7 +55,7 @@ packages: path: ".." relative: true source: path - version: "3.2.0" + version: "3.2.1" fake_async: dependency: transitive description: @@ -176,4 +176,4 @@ packages: source: hosted version: "2.1.4" sdks: - dart: ">=2.18.0 <4.0.0" + dart: ">=2.18.0 <3.0.0" diff --git a/pubspec.lock b/pubspec.lock index 060660e..8c5843c 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -109,34 +109,34 @@ packages: dependency: transitive description: name: dart_code_metrics - sha256: bb4ec5e729788dde5f7e8e9df4c05ec3b78532a5763e635337153ce40085514b + sha256: "728b1835a8c5b994ae8111148b427236f2f89954eebcb62baf4c476909b3d02d" url: "https://pub.dev" source: hosted - version: "5.5.1" + version: "5.7.0" dart_code_metrics_presets: dependency: transitive description: name: dart_code_metrics_presets - sha256: "43dc1fdcb424fc3aa79964304d09eeda4f199351c52cdc854f8228a9d0296b60" + sha256: "1b841b3ab3e7b942683a706cfbcef55fe9f38e7d01b690dbcd2e9f3c8e268525" url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.5.0" dart_style: dependency: transitive description: name: dart_style - sha256: "7a03456c3490394c8e7665890333e91ae8a49be43542b616e414449ac358acd4" + sha256: "5be16bf1707658e4c03078d4a9b90208ded217fb02c163e207d334082412f2fb" url: "https://pub.dev" source: hosted - version: "2.2.4" + version: "2.2.5" dash_kit_lints: dependency: "direct dev" description: name: dash_kit_lints - sha256: e5e32d3233659c8b3b40dc3e33de40ba4edd25037237e90da0238c5eb9a5cd53 + sha256: "0c6cab89b403c977136174f0364e4f15bc0a3a770c3f470e0340040ce2841b03" url: "https://pub.dev" source: hosted - version: "1.0.1" + version: "1.0.2" fake_async: dependency: transitive description: @@ -183,10 +183,10 @@ packages: dependency: transitive description: name: html - sha256: d9793e10dbe0e6c364f4c59bf3e01fb33a9b2a674bc7a1081693dba0614b6269 + sha256: "79d498e6d6761925a34ee5ea8fa6dfef38607781d2fa91e37523474282af55cb" url: "https://pub.dev" source: hosted - version: "0.15.1" + version: "0.15.2" http: dependency: transitive description: @@ -364,10 +364,18 @@ packages: dependency: transitive description: name: typed_data - sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5" + sha256: "53bdf7e979cfbf3e28987552fd72f637e63f3c8724c9e56d9246942dc2fa36ee" url: "https://pub.dev" source: hosted - version: "1.3.1" + version: "1.3.0" + uuid: + dependency: transitive + description: + name: uuid + sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313" + url: "https://pub.dev" + source: hosted + version: "3.0.7" vector_math: dependency: transitive description: @@ -401,4 +409,4 @@ packages: source: hosted version: "3.1.1" sdks: - dart: ">=2.19.0 <4.0.0" + dart: ">=2.19.0 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 452030d..02cb325 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dash_kit_uikit description: A Flutter plugin to demonstrate the set of common widgets used in APP (for dev introduction and testing) -version: 3.2.0 +version: 3.2.1 homepage: https://github.com/Dash-Kit/dash-kit-ui-kit environment: @@ -13,6 +13,6 @@ dependencies: dev_dependencies: flutter_test: sdk: flutter - dash_kit_lints: ^1.0.1 + dash_kit_lints: ^1.0.2 flutter: \ No newline at end of file