Skip to content

Commit ea236e8

Browse files
committed
Release 0.8.5
1 parent 2a02f41 commit ea236e8

File tree

9 files changed

+17
-19
lines changed

9 files changed

+17
-19
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.5
2+
- Wraps 4.1.2 [Android](https://github.com/cleveradssolutions/CAS-Android/releases) and [iOS](https://github.com/cleveradssolutions/CAS-iOS/releases) SDK.
3+
14
## 0.8.4
25
- Hotfix the native [4.1.0.1 iOS](https://github.com/cleveradssolutions/CAS-iOS/releases).
36

android/build.gradle

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

44
buildscript {
55
ext.kotlin_version = '1.8.22'
@@ -33,11 +33,6 @@ rootProject.allprojects {
3333
url = "https://cboost.jfrog.io/artifactory/chartboost-ads/"
3434
content { it.includeGroup("com.chartboost") }
3535
}
36-
maven {
37-
name = "SuperAwesomeAdsRepo"
38-
url = "https://aa-sdk.s3-eu-west-1.amazonaws.com/android_repo"
39-
content { it.includeGroup("tv.superawesome.sdk.publisher") }
40-
}
4136
maven {
4237
name = "YSONetworkRepo"
4338
url = "https://ysonetwork.s3.eu-west-3.amazonaws.com/sdk/android"
@@ -92,5 +87,5 @@ android {
9287
}
9388

9489
dependencies {
95-
implementation 'com.cleveradssolutions:cas-sdk:4.1.0'
90+
implementation 'com.cleveradssolutions:cas-sdk:4.1.2'
9691
}

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "kotlin-android"
44
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
55
id "dev.flutter.flutter-gradle-plugin"
6-
id("com.cleveradssolutions.gradle-plugin") version "4.1.0"
6+
id("com.cleveradssolutions.gradle-plugin") version "4.1.2"
77
}
88

99
cas {

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.1'
6+
$casVersion = '4.1.2'
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.4'
7+
s.version = '0.8.5'
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.1'
23+
s.dependency 'CleverAdsSolutions-Base', '>= 4.1.2'
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.4";
20+
static const String _pluginVersion = "0.8.5";
2121

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

lib/src/manager_builder.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class ManagerBuilder {
2727
/// Set [AdType.None] to disable all ad types requests.
2828
///
2929
/// Ad types can be enabled manually after initialize by [MediationManager.setEnabled]
30-
@Deprecated("This method is no longer maintained and should not be used.")
30+
@Deprecated("Use `ManagerBuilder.withAdTypes()` only if you continue to use `MediationManager` for ad requests. For the new `CASInterstitial` and `CASRewarded` implementations, you should skip this function call.")
3131
ManagerBuilder withAdTypes(final int adTypes);
3232

3333
/// The userID is a unique identifier supplied by your application and must be static for each user across sessions.

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.4
3+
version: 0.8.5
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
import re
33
import sys
44

5-
_FLUTTER_PLUGIN_VERSION = "0.8.4"
6-
_CAS_VERSION = "4.1.0"
5+
_FLUTTER_PLUGIN_VERSION = "0.8.5"
6+
_CAS_VERSION = "4.1.2"
77

88
# Plugin publishing flow (from the project root):
9-
# python tools/version_updater.py
10-
# python tools/generate_export_file.py
9+
# python3 tools/version_updater.py
10+
# python3 tools/generate_export_file.py
1111
# [write CHANGELOG.md]
1212
# dart format .
1313
# flutter analyze
@@ -52,7 +52,7 @@ def update_cas_sdk_version_ios():
5252
update_version_in_file(
5353
os.path.join('ios', 'clever_ads_solutions.podspec'),
5454
" s.dependency 'CleverAdsSolutions-Base', '",
55-
_CAS_VERSION + "'"
55+
">= " + _CAS_VERSION + "'"
5656
)
5757

5858

0 commit comments

Comments
 (0)