Skip to content

Commit 2a02f41

Browse files
committed
Release 0.8.4
1 parent 94cba0f commit 2a02f41

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.8.4
2+
- Hotfix the native [4.1.0.1 iOS](https://github.com/cleveradssolutions/CAS-iOS/releases).
3+
14
## 0.8.3
25
- Wraps 4.1.0 [Android](https://github.com/cleveradssolutions/CAS-Android/releases) and [iOS](https://github.com/cleveradssolutions/CAS-iOS/releases) SDK.
36
- Resolved all Flutter/Dart static analysis warnings.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = 'com.cleveradssolutions.plugin.flutter'
2-
version = '0.8.3'
2+
version = '0.8.4'
33

44
buildscript {
55
ext.kotlin_version = '1.8.22'

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ platform :ios, '13.0'
33
source 'https://cdn.cocoapods.org/'
44
source 'https://github.com/cleveradssolutions/CAS-Specs.git'
55

6-
$casVersion = '4.1.0'
6+
$casVersion = '4.1.0.1'
77

88
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
99
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

ios/clever_ads_solutions.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'clever_ads_solutions'
7-
s.version = '0.8.3'
7+
s.version = '0.8.4'
88
s.summary = 'CAS.AI plugin for Flutter.'
99
s.description = <<-DESC
1010
CAS.AI plugin for Flutter.
@@ -20,7 +20,7 @@ CAS.AI plugin for Flutter.
2020
s.static_framework = true
2121

2222
s.dependency 'Flutter'
23-
s.dependency 'CleverAdsSolutions-Base', '4.1.0'
23+
s.dependency 'CleverAdsSolutions-Base', '4.1.0.1'
2424

2525
# Flutter.framework does not contain a i386 slice.
2626
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

lib/src/cas.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import 'user_consent.dart';
1717

1818
/// Represents the CAS.AI SDK.
1919
class CAS {
20-
static const String _pluginVersion = "0.8.3";
20+
static const String _pluginVersion = "0.8.4";
2121

2222
static const MethodChannel _channel = MethodChannel("cleveradssolutions/cas");
2323

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: clever_ads_solutions
22
description: The CAS.AI Flutter plugin allows you to easily monetize your apps for iOS and Android using lot of Ads SDKs in mediation.
3-
version: 0.8.3
3+
version: 0.8.4
44
repository: https://github.com/cleveradssolutions/CAS-Flutter
55
documentation: https://github.com/cleveradssolutions/CAS-Flutter/wiki
66
issue_tracker: https://github.com/cleveradssolutions/CAS-Flutter/issues

tools/version_updater.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import re
33
import sys
44

5-
_FLUTTER_PLUGIN_VERSION = "0.8.3"
5+
_FLUTTER_PLUGIN_VERSION = "0.8.4"
66
_CAS_VERSION = "4.1.0"
77

88
# Plugin publishing flow (from the project root):
@@ -34,63 +34,63 @@ def update_version_in_file(file_path, prefix, suffix):
3434

3535
def update_cas_sdk_version_android():
3636
update_version_in_file(
37-
os.path.join('..', 'android', 'build.gradle'),
37+
os.path.join('android', 'build.gradle'),
3838
" implementation 'com.cleveradssolutions:cas-sdk:",
3939
_CAS_VERSION + "'"
4040
)
4141

4242

4343
def update_cas_sdk_version_android_example():
4444
update_version_in_file(
45-
os.path.join('..', 'example', 'android', 'app', 'build.gradle'),
45+
os.path.join('example', 'android', 'app', 'build.gradle'),
4646
' id("com.cleveradssolutions.gradle-plugin") version "',
4747
_CAS_VERSION + '"'
4848
)
4949

5050

5151
def update_cas_sdk_version_ios():
5252
update_version_in_file(
53-
os.path.join('..', 'ios', 'clever_ads_solutions.podspec'),
53+
os.path.join('ios', 'clever_ads_solutions.podspec'),
5454
" s.dependency 'CleverAdsSolutions-Base', '",
5555
_CAS_VERSION + "'"
5656
)
5757

5858

5959
def update_cas_sdk_version_ios_example():
6060
update_version_in_file(
61-
os.path.join('..', 'example', 'ios', 'Podfile'),
61+
os.path.join('example', 'ios', 'Podfile'),
6262
"$casVersion = '",
6363
_CAS_VERSION + "'"
6464
)
6565

6666

6767
def update_flutter_plugin_version():
6868
update_version_in_file(
69-
os.path.join('..', 'pubspec.yaml'),
69+
os.path.join('pubspec.yaml'),
7070
"version: ",
7171
_FLUTTER_PLUGIN_VERSION
7272
)
7373

7474

7575
def update_flutter_plugin_version_dart():
7676
update_version_in_file(
77-
os.path.join('..', 'lib', 'src', 'cas.dart'),
77+
os.path.join('lib', 'src', 'cas.dart'),
7878
' static const String _pluginVersion = "',
7979
_FLUTTER_PLUGIN_VERSION + '";'
8080
)
8181

8282

8383
def update_flutter_plugin_version_android():
8484
update_version_in_file(
85-
os.path.join('..', 'android', 'build.gradle'),
85+
os.path.join('android', 'build.gradle'),
8686
"version = '",
8787
_FLUTTER_PLUGIN_VERSION + "'"
8888
)
8989

9090

9191
def update_flutter_plugin_version_ios():
9292
update_version_in_file(
93-
os.path.join('..', 'ios', 'clever_ads_solutions.podspec'),
93+
os.path.join('ios', 'clever_ads_solutions.podspec'),
9494
" s.version = '",
9595
_FLUTTER_PLUGIN_VERSION + "'"
9696
)

0 commit comments

Comments
 (0)