Skip to content

Commit c1201a6

Browse files
committed
Release 4.4.2
1 parent cf15d4b commit c1201a6

File tree

9 files changed

+14
-11
lines changed

9 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.4.2
2+
- Updated CAS [Android](https://github.com/cleveradssolutions/CAS-Android/releases) and [iOS](https://github.com/cleveradssolutions/CAS-iOS/releases) dependencies to 4.4.2
3+
14
## 4.4.1
25
- Updated CAS [Android](https://github.com/cleveradssolutions/CAS-Android/releases) and [iOS](https://github.com/cleveradssolutions/CAS-iOS/releases) dependencies to 4.4.1
36
- Renamed `AdError.rejected` to `AdError.codeRejected` for consistency with other error codes.

android/build.gradle

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

44
buildscript {
55
ext.kotlin_version = '2.0.21'
@@ -90,6 +90,6 @@ android {
9090
}
9191

9292
dependencies {
93-
implementation 'com.cleveradssolutions:cas-sdk:4.4.1'
93+
implementation 'com.cleveradssolutions:cas-sdk:4.4.2'
9494
}
9595
}

android/src/main/kotlin/com/cleveradssolutions/plugin/flutter/CASMobileAdsPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import io.flutter.plugin.common.MethodCall
2121
import io.flutter.plugin.common.MethodChannel
2222
import io.flutter.plugin.common.StandardMethodCodec
2323

24-
private const val PLUGIN_VERSION = "4.4.1"
24+
private const val PLUGIN_VERSION = "4.4.2"
2525
private const val DEFAULT_KEY = "value"
2626

2727
class CASMobileAdsPlugin : FlutterPlugin, ActivityAware, MethodChannel.MethodCallHandler {

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.4.1"
6+
id("com.cleveradssolutions.gradle-plugin") version "4.4.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.4.1'
6+
$casVersion = '4.4.2'
77

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

ios/Classes/CASMobileAdsPlugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import CleverAdsSolutions
22
import Flutter
33

4-
private let pluginVersion = "4.4.1"
4+
private let pluginVersion = "4.4.2"
55
private let defaultKey = "value"
66

77
@objc(CASMobileAdsPlugin)

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 = '4.4.1'
7+
s.version = '4.4.2'
88
s.summary = 'CAS.AI plugin for Flutter.'
99
s.description = <<-DESC
1010
CAS.AI Mobile Ads plugin for Flutter.
@@ -20,7 +20,7 @@ CAS.AI Mobile Ads plugin for Flutter.
2020
s.static_framework = true
2121

2222
s.dependency 'Flutter'
23-
s.dependency 'CleverAdsSolutions-Base', '~> 4.4.1'
23+
s.dependency 'CleverAdsSolutions-Base', '~> 4.4.2'
2424

2525
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS' => 'armv7 arm64 x86_64' }
2626
end

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: 4.4.1
3+
version: 4.4.2
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import re
33
import sys
44

5-
_PLUGIN_VERSION = "4.4.1"
6-
_CAS_VERSION = "4.4.1"
5+
_PLUGIN_VERSION = "4.4.2"
6+
_CAS_VERSION = "4.4.2"
77

88
# Plugin publishing flow (from the project root):
99
# python3 tools/version_updater.py

0 commit comments

Comments
 (0)