Skip to content

Commit

Permalink
Merge pull request #61 from sakebook/release/0.5.0
Browse files Browse the repository at this point in the history
Bumpup version to 0.5.0
  • Loading branch information
sakebook authored Aug 3, 2020
2 parents 73c06dd + e7d70a6 commit 517b1c0
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.4.0"
version: "0.5.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -193,3 +193,4 @@ packages:
version: "3.6.1"
sdks:
dart: ">=2.6.0 <3.0.0"
flutter: ">=1.12.0 <2.0.0"
8 changes: 4 additions & 4 deletions ios/native_ads.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,4 @@ packages:
version: "3.6.1"
sdks:
dart: ">=2.6.0 <3.0.0"
flutter: ">=1.12.0 <2.0.0"
17 changes: 11 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"

0 comments on commit 517b1c0

Please sign in to comment.