Skip to content

Commit eeb0fac

Browse files
authored
Merge pull request #17 from sakebook/release/0.1.0
Release/0.1.0
2 parents 545ef01 + 8fc736e commit eeb0fac

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

.github/workflows/flutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
container:
18-
image: cirrusci/flutter:beta
18+
image: cirrusci/flutter:stable
1919
options: -u root
2020

2121
steps:

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
name: Publish plugin
22

3-
on: [release]
3+
on:
4+
release:
5+
types: [published]
46

57
jobs:
68
publish:
79

810
runs-on: ubuntu-latest
911

1012
container:
11-
image: cirrusci/flutter:beta
13+
image: cirrusci/flutter:stable
1214
options: -u root
1315

1416
steps:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.0
2+
3+
* Change flutter channel to stable.
4+
* Fix Android initialize.
5+
* Add unit test.
6+
17
## 0.0.3
28

39
* Define Swift version.

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ PODS:
2929
- nanopb/encode (= 0.3.901)
3030
- nanopb/decode (0.3.901)
3131
- nanopb/encode (0.3.901)
32-
- native_ads (0.0.3):
32+
- native_ads (0.1.0):
3333
- Flutter
3434
- Google-Mobile-Ads-SDK
3535

@@ -56,7 +56,7 @@ SPEC CHECKSUMS:
5656
GoogleAppMeasurement: 86a82f0e1f20b8eedf8e20326530138fd71409de
5757
GoogleUtilities: e7dc37039b19df7fe543479d3e4a02ac8d11bb69
5858
nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48
59-
native_ads: cba31e11eb56f051f1a47c73f3747a25c49ee190
59+
native_ads: ed929d12e7883148741ca0070d5f4d12eea23203
6060

6161
PODFILE CHECKSUM: b6a0a141693093b304368d08511b46cf3d1d0ac5
6262

ios/native_ads.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'native_ads'
6-
s.version = '0.0.3'
6+
s.version = '0.1.0'
77
s.swift_version = '5.0'
88
s.summary = 'Flutter native ads with PlatformView'
99
s.description = <<-DESC

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: native_ads
22
description: Flutter plugin for AdMob Native Ads. Compatible with Android and iOS using PlatformView.
3-
version: 0.0.3
3+
version: 0.1.0
44
author: sakebook <sakebook@gmail.com>
55
homepage: https://github.com/sakebook/flutter_native_ads
66

0 commit comments

Comments
 (0)