Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Version to 4.6.1.0.0.0 #53

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Note the first digit of every adapter version corresponds to the major version of the Chartboost Mediation SDK compatible with that adapter.
Adapters are compatible with any Chartboost Mediation SDK version within that major version.

### 4.6.1.0.0.0
- This version of the adapter has been certified with Ads-Global 6.1.0.0.

### 4.6.0.0.0.0
- This version of the adapter has been certified with Ads-Global 6.0.0.0.

Expand Down
4 changes: 2 additions & 2 deletions ChartboostMediationAdapterPangle.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'ChartboostMediationAdapterPangle'
spec.version = '4.6.0.0.0.0'
spec.version = '4.6.1.0.0.0'
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.homepage = 'https://github.com/ChartBoost/chartboost-mediation-ios-adapter-pangle'
spec.authors = { 'Chartboost' => 'https://www.chartboost.com/' }
Expand All @@ -24,6 +24,6 @@ Pod::Spec.new do |spec|
spec.dependency 'ChartboostMediationSDK', '~> 4.0'

# Partner network SDK and version that this adapter is certified to work with.
spec.dependency 'Ads-Global', '~> 6.0.0.0'
spec.dependency 'Ads-Global', '~> 6.1.0.0'
spec.static_framework = true
end
2 changes: 1 addition & 1 deletion Source/PangleAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class PangleAdapter: PartnerAdapter {
/// The version of the adapter.
/// It should have either 5 or 6 digits separated by periods, where the first digit is Chartboost Mediation SDK's major version, the last digit is the adapter's build version, and intermediate digits are the partner SDK's version.
/// Format: `<Chartboost Mediation major version>.<Partner major version>.<Partner minor version>.<Partner patch version>.<Partner build version>.<Adapter build version>` where `.<Partner build version>` is optional.
let adapterVersion = "4.6.0.0.0.0"
let adapterVersion = "4.6.1.0.0.0"

/// The partner's unique identifier.
let partnerIdentifier = "pangle"
Expand Down
Loading