diff --git a/.github/workflows/pana.yml b/.github/workflows/pana.yml index 60f6f64..b89a0dc 100644 --- a/.github/workflows/pana.yml +++ b/.github/workflows/pana.yml @@ -27,3 +27,25 @@ jobs: with: working_directory: packages/stream_core min_score: 125 # Missing 10 points for no example, 10 points for license, and 10 points for `publish_to` in pubspec. + + stream_core_flutter: + runs-on: ubuntu-latest + steps: + - name: 📚 Git Checkout + uses: actions/checkout@v4 + - name: 📊 Verify Pana Score + uses: ./.github/actions/pana + with: + working_directory: packages/stream_core_flutter + min_score: 120 # Missing 10 points for no license, 10 points for no example, and 20 points for static analysis issues. + + stream_thumbnail: + runs-on: ubuntu-latest + steps: + - name: 📚 Git Checkout + uses: actions/checkout@v4 + - name: 📊 Verify Pana Score + uses: ./.github/actions/pana + with: + working_directory: packages/stream_thumbnail + min_score: 150 # Missing 10 points for static analysis issues. diff --git a/melos.yaml b/melos.yaml index 9e7e5b3..b8f5956 100644 --- a/melos.yaml +++ b/melos.yaml @@ -37,6 +37,7 @@ command: shimmer: ^3.0.0 stream_core: ^0.4.0 stream_core_flutter: ^0.4.0 + stream_thumbnail: ^0.1.0 svg_icon_widget: ^0.0.1+1 synchronized: ^3.3.0 theme_extensions_builder_annotation: ^7.1.0 diff --git a/packages/stream_thumbnail/CHANGELOG.md b/packages/stream_thumbnail/CHANGELOG.md index d0bd041..6073234 100644 --- a/packages/stream_thumbnail/CHANGELOG.md +++ b/packages/stream_thumbnail/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.0.1 +## 0.1.0 * Initial release. diff --git a/packages/stream_thumbnail/example/pubspec.yaml b/packages/stream_thumbnail/example/pubspec.yaml index 0e03b2b..e0e6f9c 100644 --- a/packages/stream_thumbnail/example/pubspec.yaml +++ b/packages/stream_thumbnail/example/pubspec.yaml @@ -4,13 +4,13 @@ publish_to: 'none' version: 1.0.0+1 environment: - sdk: ^3.12.0 + sdk: ^3.10.0 + flutter: ">=3.38.1" dependencies: flutter: sdk: flutter - stream_thumbnail: - path: .. + stream_thumbnail: ^0.1.0 dev_dependencies: flutter_test: diff --git a/packages/stream_thumbnail/ios/stream_thumbnail.podspec b/packages/stream_thumbnail/ios/stream_thumbnail.podspec index 3e3f455..4502754 100644 --- a/packages/stream_thumbnail/ios/stream_thumbnail.podspec +++ b/packages/stream_thumbnail/ios/stream_thumbnail.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'stream_thumbnail' - s.version = '0.0.1' + s.version = '0.1.0' s.summary = 'A Flutter plugin for creating a thumbnail from a local video file or from a video URL.' s.description = <<-DESC A Flutter plugin for creating a thumbnail from a local video file or from a video URL. diff --git a/packages/stream_thumbnail/pubspec.yaml b/packages/stream_thumbnail/pubspec.yaml index 5351e5d..2cd583d 100644 --- a/packages/stream_thumbnail/pubspec.yaml +++ b/packages/stream_thumbnail/pubspec.yaml @@ -1,6 +1,6 @@ name: stream_thumbnail description: A Flutter plugin for creating a thumbnail from a local video file or from a video URL. -version: 0.0.1 +version: 0.1.0 homepage: https://github.com/GetStream/stream-core-flutter repository: https://github.com/GetStream/stream-core-flutter