diff --git a/.github/workflows/flutter.yml b/.github/workflows/flutter.yml index 82b379d..603db0c 100644 --- a/.github/workflows/flutter.yml +++ b/.github/workflows/flutter.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest container: - image: cirrusci/flutter:beta + image: cirrusci/flutter:stable options: -u root steps: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 334969e..455289a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,8 @@ name: Publish plugin -on: [release] +on: + release: + types: [published] jobs: publish: @@ -8,7 +10,7 @@ jobs: runs-on: ubuntu-latest container: - image: cirrusci/flutter:beta + image: cirrusci/flutter:stable options: -u root steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 97b450e..ee8bb4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.1.0 + +* Change flutter channel to stable. +* Fix Android initialize. +* Add unit test. + ## 0.0.3 * Define Swift version. diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index be120df..162b178 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -29,7 +29,7 @@ PODS: - nanopb/encode (= 0.3.901) - nanopb/decode (0.3.901) - nanopb/encode (0.3.901) - - native_ads (0.0.3): + - native_ads (0.1.0): - Flutter - Google-Mobile-Ads-SDK @@ -56,7 +56,7 @@ SPEC CHECKSUMS: GoogleAppMeasurement: 86a82f0e1f20b8eedf8e20326530138fd71409de GoogleUtilities: e7dc37039b19df7fe543479d3e4a02ac8d11bb69 nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48 - native_ads: cba31e11eb56f051f1a47c73f3747a25c49ee190 + native_ads: ed929d12e7883148741ca0070d5f4d12eea23203 PODFILE CHECKSUM: b6a0a141693093b304368d08511b46cf3d1d0ac5 diff --git a/ios/native_ads.podspec b/ios/native_ads.podspec index fdf8e07..fba64da 100644 --- a/ios/native_ads.podspec +++ b/ios/native_ads.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'native_ads' - s.version = '0.0.3' + s.version = '0.1.0' s.swift_version = '5.0' s.summary = 'Flutter native ads with PlatformView' s.description = <<-DESC diff --git a/pubspec.yaml b/pubspec.yaml index 83a1c69..60137e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: native_ads description: Flutter plugin for AdMob Native Ads. Compatible with Android and iOS using PlatformView. -version: 0.0.3 +version: 0.1.0 author: sakebook homepage: https://github.com/sakebook/flutter_native_ads