From e7d70a6effc1689aad1a7b8dc45fb564496b136a Mon Sep 17 00:00:00 2001 From: sakebook Date: Tue, 4 Aug 2020 02:56:05 +0900 Subject: [PATCH] Bumpup version to 0.5.0 --- .github/workflows/publish.yml | 3 ++- CHANGELOG.md | 17 ++++++++++++++++- example/pubspec.lock | 3 ++- ios/native_ads.podspec | 8 ++++---- pubspec.lock | 1 + pubspec.yaml | 17 +++++++++++------ 6 files changed, 36 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9e3413b..82c4866 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,8 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Publish - uses: sakebook/actions-flutter-pub-publisher@v1.2.1 + uses: sakebook/actions-flutter-pub-publisher@v1.3.1 with: credential: ${{ secrets.CREDENTIAL_JSON }} skip_test: true + dry_run: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 62eaa26..086c536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,22 @@ +## 0.5.0 +### Added +* Added API Document. + +### Changed +* Update libraries. +* [Android]Supporting the new Android plugins APIs. + +### Removed +* [Android]Bumpup minimum Android version to API level 21 +* [iOS]Bumpup minimum iOS deployment target to 10.0 + +### Fixed +* [iOS]Fix crash when initializing view. + ## 0.4.0 ### Changed * Update libraries. -* [Android]minSdkVersion to 23. +* [Android]Example app minSdkVersion to 23. * MediaView field to optional. ### Fixed diff --git a/example/pubspec.lock b/example/pubspec.lock index d014e65..25c11d1 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -101,7 +101,7 @@ packages: path: ".." relative: true source: path - version: "0.4.0" + version: "0.5.0" path: dependency: transitive description: @@ -193,3 +193,4 @@ packages: version: "3.6.1" sdks: dart: ">=2.6.0 <3.0.0" + flutter: ">=1.12.0 <2.0.0" diff --git a/ios/native_ads.podspec b/ios/native_ads.podspec index 22a29d6..4792a6c 100644 --- a/ios/native_ads.podspec +++ b/ios/native_ads.podspec @@ -3,22 +3,22 @@ # Pod::Spec.new do |s| s.name = 'native_ads' - s.version = '0.4.0' + s.version = '0.5.0' s.swift_version = '5.0' s.summary = 'Flutter native ads with PlatformView' s.description = <<-DESC Flutter native ads with PlatformView DESC - s.homepage = 'http://example.com' + s.homepage = 'https://github.com/sakebook/flutter_native_ads' s.license = { :file => '../LICENSE' } - s.author = { 'Your Company' => 'email@example.com' } + s.author = { 'sakebook' => 'sakebook@gmail.com' } s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' s.dependency 'Google-Mobile-Ads-SDK' - s.ios.deployment_target = '8.0' + s.ios.deployment_target = '10.0' s.static_framework = true end diff --git a/pubspec.lock b/pubspec.lock index 97283e8..43d2389 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -179,3 +179,4 @@ packages: version: "3.6.1" sdks: dart: ">=2.6.0 <3.0.0" + flutter: ">=1.12.0 <2.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 3ae9395..59195ae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,11 +1,8 @@ name: native_ads description: Flutter plugin for AdMob Native Ads. Compatible with Android and iOS using PlatformView. -version: 0.4.0 +version: 0.5.0 homepage: https://github.com/sakebook/flutter_native_ads -environment: - sdk: ">=2.1.0 <3.0.0" - dependencies: flutter: sdk: flutter @@ -16,5 +13,13 @@ dev_dependencies: flutter: plugin: - androidPackage: sakebook.github.com.native_ads - pluginClass: NativeAdsPlugin + platforms: + android: + package: sakebook.github.com.native_ads + pluginClass: NativeAdsPlugin + ios: + pluginClass: NativeAdsPlugin + +environment: + sdk: ">=2.1.0 <3.0.0" + flutter: ">=1.12.0 <2.0.0"